HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers13/rie-jeanne.nl/wwwroot/kms/app/views/basic_page/v_dash.php


<form action="<?php echo LANG_ROOT . URL_PAGE . '/search/'; ?>" method="post">
    <div class="column double">
        <br />
        <h1><?php $this->getData('page_label'); ?></h1>
    </div>
    <?php if(URL_PAGE != 'home') { ?>
        <div class="column">
        <label for="keyword"><?php echo $this->lang['search']; ?></label>
        <input type="text" name="keyword" id="keyword" value="<?php echo $this->lang['keyword']; ?>" data-label="<?php echo $this->lang['keyword']; ?>" class="text_field reset_value" />
    </div>
    <div class="column last">
        <div class="btn blue">
            <input type="submit" name="sbm_search" id="sbm_search" value="<?php echo $this->lang['search']; ?>"/>
            <span class="over"></span>
            <span class="out"></span>
        </div>
    </div>
    <?php } ?>
    <div class="clear"></div>
</form>

<hr />

<?php
if($this->getData('filter_back',FALSE))
{
    echo '<span class="filter_back"><a href="' . LANG_ROOT . URL_PAGE . '/">&larr; ' . $this->getData('filter_back',FALSE) . '</a></span><br /><br />';
}
if(isset($_POST['sbm_search']))
{
    echo '<span class="filter_back"><a href="' . LANG_ROOT . URL_PAGE .'/">&larr; Back</a></span><br /><br />';
}
?>
<form action="<?php $this->getData('form_action'); ?>" method="post">
    <?php if(URL_PAGE != 'home') $this->getData('btn_new'); ?>
    <?php if(URL_PAGE != 'home') $this->getData('btn_order'); ?>
    <?php if(URL_PAGE != 'home') $this->getData('btn_delete'); ?>
    <div class="clear"></div>

    <?php //$this->getData('form_check_all'); ?>

    <ul class="item_list">
        <?php $this->getData('item_list'); ?>
    </ul>

    <?php if($this->getData('page_nav',FALSE)){ ?>
        <div class="page_nav">
            <span class="prev"><?php $this->getData('prev_page'); ?></span>
            <ul class="page_numbers">
                <?php $this->getData('page_numbers'); ?>
            </ul>
            <span class="next"><?php $this->getData('next_page'); ?></span>
        </div>
    <?php } ?>

    <div class="clear"></div>
</form>