@my wife Roline van der Merwe @copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Builds Complex Joomla Components /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); ?> ###BOM### // No direct access to this file defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED### // import Joomla view library jimport('joomla.application.component.view'); /** * ###View### View class */ class ###Component###View###View### extends JViewLegacy { /** * display method of View * @return void */ public function display($tpl = null) { // Assign the variables $this->form = $this->get('Form'); $this->item = $this->get('Item'); $this->script = $this->get('Script'); $this->state = $this->get('State'); // get action permissions $this->canDo = ###Component###Helper::getActions('###view###',$this->item); // get input $jinput = JFactory::getApplication()->input; $this->ref = $jinput->get('ref', 0, 'word'); $this->refid = $jinput->get('refid', 0, 'int'); $this->referral = ''; if ($this->refid) { // return to the item that refered to this item $this->referral = '&ref='.(string)$this->ref.'&refid='.(int)$this->refid; } elseif($this->ref) { // return to the list view that refered to this item $this->referral = '&ref='.(string)$this->ref; }###LINKEDVIEWITEMS### // Set the toolbar $this->addToolBar(); // Check for errors. if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors), 500); } // Display the template parent::display($tpl); // Set the document $this->setDocument(); } /** * Setting the toolbar */ protected function addToolBar() { // adding the joomla edit toolbar to the front JLoader::register('JToolbarHelper', JPATH_ADMINISTRATOR.'/includes/toolbar.php'); ###ADDTOOLBAR### // now initiate the toolbar $this->toolbar = JToolbar::getInstance(); } /** * Escapes a value for output in a view script. * * @param mixed $var The output to escape. * * @return mixed The escaped value. */ public function escape($var) { if(strlen($var) > 30) { // use the helper htmlEscape method instead and shorten the string return ###Component###Helper::htmlEscape($var, $this->_charset, true, 30); } // use the helper htmlEscape method instead. return ###Component###Helper::htmlEscape($var, $this->_charset); } /** * Method to set up the document properties * * @return void */ protected function setDocument() { $isNew = ($this->item->id < 1); if (!isset($this->document)) { $this->document = JFactory::getDocument(); } $this->document->setTitle(JText::_($isNew ? 'COM_###COMPONENT###_###VIEW###_NEW' : 'COM_###COMPONENT###_###VIEW###_EDIT')); // we need this to fix the form display $this->document->addStyleSheet(JURI::root()."administrator/templates/isis/css/template.css"); $this->document->addScript(JURI::root()."administrator/templates/isis/js/template.js"); // the default style of this view $this->document->addStyleSheet(JURI::root()."components/com_###component###/assets/css/###view###.css");###AJAXTOKE### ###LINKEDVIEWTABLESCRIPTS### // default javascript of this view $this->document->addScript(JURI::root().$this->script); $this->document->addScript(JURI::root(). "components/com_###component###/views/###view###/submitbutton.js"); ###DOCUMENT_CUSTOM_PHP### JText::script('view not acceptable. Error'); } }