Source for file view.html.php

Documentation is available at view.html.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_finder
  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
  8.  */
  9.  
  10. defined('_JEXEC'or die;
  11.  
  12. /**
  13.  * Indexer view class for Finder.
  14.  *
  15.  * @package     Joomla.Administrator
  16.  * @subpackage  com_finder
  17.  * @since       2.5
  18.  */
  19. {
  20.     /**
  21.      * Method to display the view.
  22.      *
  23.      * @param   string  $tpl  A template file to load. [optional]
  24.      *
  25.      * @return  void 
  26.      *
  27.      * @since   2.5
  28.      */
  29.     public function display($tpl null)
  30.     {
  31.         JHtml::_('behavior.framework');
  32.         JHtml::_('stylesheet''com_finder/indexer.css'falsetruefalse);
  33.         JHtml::_('script''com_finder/indexer.js'falsetrue);
  34.         JHtml::_('jquery.framework');
  35.         JHtml::_('script''system/progressbar.js'truetrue);
  36.  
  37.         parent::display();
  38.     }
  39. }

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