File "view.html.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/views/customf/view.html.php
File size: 2.2 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @package VikBooking
* @subpackage com_vikbooking
* @author Alessio Gaggii - e4j - Extensionsforjoomla.com
* @copyright Copyright (C) 2018 e4j - Extensionsforjoomla.com. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* @link https://vikwp.com
*/
defined('ABSPATH') or die('No script kiddies please!');
// import Joomla view library
jimport('joomla.application.component.view');
class VikBookingViewCustomf extends JViewVikBooking
{
function display($tpl = null)
{
// Set the toolbar
$this->addToolBar();
$rows = "";
$navbut = "";
$dbo = JFactory::getDbo();
$mainframe = JFactory::getApplication();
$lim = $mainframe->getUserStateFromRequest("com_vikbooking.limit", 'limit', $mainframe->get('list_limit'), 'int');
$lim0 = VikRequest::getVar('limitstart', 0, '', 'int');
$q = "SELECT SQL_CALC_FOUND_ROWS * FROM `#__vikbooking_custfields` ORDER BY `#__vikbooking_custfields`.`ordering` ASC";
$dbo->setQuery($q, $lim0, $lim);
$dbo->execute();
if ($dbo->getNumRows() > 0) {
$rows = $dbo->loadAssocList();
$dbo->setQuery('SELECT FOUND_ROWS();');
jimport('joomla.html.pagination');
$pageNav = new JPagination( $dbo->loadResult(), $lim0, $lim );
$navbut = "<table align=\"center\"><tr><td>".$pageNav->getListFooter()."</td></tr></table>";
}
$this->rows = $rows;
$this->lim0 = $lim0;
$this->navbut = $navbut;
// Display the template
parent::display($tpl);
}
/**
* Sets the toolbar
*/
protected function addToolBar() {
JToolBarHelper::title(JText::translate('VBMAINCUSTOMFTITLE'), 'vikbooking');
if (JFactory::getUser()->authorise('core.create', 'com_vikbooking')) {
JToolBarHelper::addNew('newcustomf', JText::translate('VBMAINCUSTOMFNEW'));
JToolBarHelper::spacer();
}
if (JFactory::getUser()->authorise('core.edit', 'com_vikbooking')) {
JToolBarHelper::editList('editcustomf', JText::translate('VBMAINCUSTOMFEDIT'));
JToolBarHelper::spacer();
}
if (JFactory::getUser()->authorise('core.delete', 'com_vikbooking')) {
JToolBarHelper::deleteList(JText::translate('VBDELCONFIRM'), 'removecustomf', JText::translate('VBMAINCUSTOMFDEL'));
JToolBarHelper::spacer();
}
}
}