Source for file rowselect.php

Documentation is available at rowselect.php

  1. <?php
  2. /**
  3.  * @package    FrameworkOnFramework
  4.  * @subpackage form
  5.  * @copyright  Copyright (C) 2010 - 2012 Akeeba Ltd. All rights reserved.
  6.  * @license    GNU General Public License version 2 or later; see LICENSE.txt
  7.  */
  8. // Protect from unauthorized access
  9. defined('_JEXEC'or die;
  10.  
  11. /**
  12.  * Row selection checkbox
  13.  *
  14.  * @package  FrameworkOnFramework
  15.  * @since    2.0
  16.  */
  17. {
  18.     /**
  19.      * Get the header
  20.      *
  21.      * @return  string  The header HTML
  22.      */
  23.     protected function getHeader()
  24.     {
  25.         return '<input type="checkbox" name="checkall-toggle" value="" title="'
  26.             . JText::_('JGLOBAL_CHECK_ALL')
  27.             . '" onclick="Joomla.checkAll(this)" />';
  28.     }
  29. }

Documentation generated on Tue, 19 Nov 2013 15:12:28 +0100 by phpDocumentor 1.4.3