File: D:/HostingSpaces/SBogers18/decoockpit.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 . '/">← ' . $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 .'/">← 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>