0byt3m1n1-V2
Path:
/
home
/
phangnga
/
administrator
/
components
/
com_sexypolling
/
views
/
sexycategory
/
[
Home
]
File: view.html.php
<?php /** * Joomla! component sexypolling * * @version $Id: view.html.php 2012-04-05 14:30:25 svn $ * @author 2GLux.com * @package Sexy Polling * @subpackage com_sexypolling * @license GNU/GPL * */ // no direct access defined('_JEXEC') or die('Restircted access'); // Import Joomla! libraries jimport( 'joomla.application.component.view'); class SexypollingViewSexycategory extends JViewLegacy { protected $form; protected $item; protected $state; public function display($tpl = null) { // Initialiase variables. $this->form = $this->get('Form'); $this->item = $this->get('Item'); $this->state = $this->get('State'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @since 1.6 */ protected function addToolbar() { JRequest::setVar('hidemainmenu', true); $user = JFactory::getUser(); $userId = $user->get('id'); $isNew = ($this->item->id == 0); // Since we don't track these assets at the item level, use the category id. $text = $isNew ? JText::_( 'New' ) : JText::_( 'JTOOLBAR_EDIT' ); JToolBarHelper::title( JText::_( 'COM_SEXYPOLLING_CATEGORY' ).': <small><small>[ ' . $text.' ]</small></small>','manage.png' ); // Build the actions for new and existing records. if ($isNew) { JToolBarHelper::apply('sexycategory.apply'); JToolBarHelper::save('sexycategory.save'); JToolBarHelper::cancel('sexycategory.cancel'); } else { JToolBarHelper::apply('sexycategory.apply'); JToolBarHelper::save('sexycategory.save'); JToolBarHelper::cancel('sexycategory.cancel','JTOOLBAR_CLOSE'); } } }
©
2018.