Source for file view.html.php

Documentation is available at view.html.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_postinstall
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined('_JEXEC'or die;
  11.  
  12. /**
  13.  * Model class to display postinstall messages
  14.  *
  15.  * @package     Joomla.Administrator
  16.  * @subpackage  com_postinstall
  17.  * @since       3.2
  18.  */
  19. {
  20.     /**
  21.      * Executes before rendering the page for the Browse task.
  22.      *
  23.      * @param   string  $tpl  Subtemplate to use
  24.      *
  25.      * @return  boolean  Return true to allow rendering of the page
  26.      *
  27.      * @since   3.2
  28.      */
  29.     protected function onBrowse($tpl null)
  30.     {
  31.         $this->eid $this->input->getInt('eid''700');
  32.         $this->token JFactory::getSession()->getFormToken();
  33.  
  34.         return parent::onBrowse($tpl);
  35.     }
  36. }

Documentation generated on Tue, 19 Nov 2013 15:17:49 +0100 by phpDocumentor 1.4.3