Пример #1
0
 /**
  *  Displays the list view
  * @param string $tpl   
  */
 public function display($tpl = null)
 {
     $this->items = $this->get('Items');
     $this->pagination = $this->get('Pagination');
     $this->state = $this->get('State');
     // Check for errors.
     if (count($errors = $this->get('Errors'))) {
         JError::raiseError(500, implode("\n", $errors));
         return false;
     }
     PfmobileappwsHelper::addSubmenu('notes');
     $this->addToolbar();
     if (!version_compare(JVERSION, '3', '<')) {
         $this->sidebar = JHtmlSidebar::render();
     }
     if (version_compare(JVERSION, '3', '<')) {
         $tpl = "25";
     }
     parent::display($tpl);
 }