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/SBogers10/kms.komma.pro/wwwroot/app/views/basic_page/v_items.php
<div id="list" class="large">

    <!-- Header -->

    <div class="header">
        <h1><?php $this->getData('bar_title'); ?></h1>
        <span class="count"><?php $this->getData('bar_count'); ?> items</span>
    </div>

    <!-- Search section -->

    <div class="search_holder">
        <span class="magnifier"></span>
        <form action="" method="post">
            <input type="text" name="search" value="<?php echo $this->lang['search']; ?>" class="search" />
        </form>
    </div>

    <div class="scrollable_area">

        <!-- Add new item -->

        <a href="<?php echo LANG_ROOT . URL_PAGE . '/' . $this->urls['newItem']; ?>" class="add_new_item"><span class="plus"></span>Add new item</a>

        <!-- Item list -->

        <ul>
           <?php $this->getData('item_list'); ?>
        </ul>
    </div>
</div>