コード例 #1
0
ファイル: view.html.php プロジェクト: pguilford/vcomcc
 /**
  * Display the view
  */
 public function display($tpl = null)
 {
     $this->state = $this->get('State');
     $this->items = $this->get('Items');
     $this->pagination = $this->get('Pagination');
     // Check for errors.
     if (count($errors = $this->get('Errors'))) {
         throw new Exception(implode("\n", $errors));
     }
     $this->addToolbar();
     Improved_ajax_loginHelper::addSubmenu('oauths');
     $this->sidebar = JHtmlSidebar::render();
     parent::display($GLOBALS['j25'] ? '25' : $tpl);
 }