Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_rsmembership/views/syslogs/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package RSMembership!
* @copyright (c) 2009 - 2016 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
class RSMembershipViewSyslogs extends JViewLegacy
{
protected $items;
protected $pagination;
protected $state;
protected $filterbar;
protected $sidebar;
protected $isJ30;
public function display($tpl=null) {
$this->addToolBar();
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->state = $this->get('State');
$this->filterbar = $this->get('FilterBar');
$this->sidebar = $this->get('SideBar');
parent::display($tpl);
}
protected function addToolBar() {
// set title
JToolBarHelper::title('RSMembership!',
'rsmembership');
require_once JPATH_COMPONENT.'/helpers/toolbar.php';
RSMembershipToolbarHelper::addToolbar('syslogs');
JToolBarHelper::deleteList('COM_RSMEMBERSHIP_CONFIRM_DELETE',
'syslogs.delete');
}
}