Your IP : 10.10.0.253


Current Path : /var/www/administrator/components/com_qf3/src/view/
Upload File :
Current File : /var/www/administrator/components/com_qf3/src/view/shop.php

<?php
/**
* @Copyright ((c) plasma-web.ru
        * @license    GPLv2 or later
        */

namespace QuickForm;

\defined('QF3_VERSION') or die;

class viewHtml extends baseView
{
    protected $items;

    public function __construct()
    {
        parent::__construct('shop');
        $this->display();
    }

    public function display()
    {
        $this->items = $this->getItems();
        $this->form = $this->getForm();
        $this->addToolbar();

        parent::display();
    }

    protected function addToolbar()
    {
        $this->settitle('QuickForm. QF_SHOP_SETTINGS');

        $html = '<div class="qf3_toolbar">';
        $html .= $this->toolbarBtn('shop.saveconf', 'Save', ' green');
        $html .= $this->toolbarBtn('shop.saveclose', 'QF_SAVE_CLOSE', ' green');
        $html .= $this->toolbarBtn('shop.close', 'Close', ' red');
        $html .= '</div>';
        echo $html;
    }


}