Source for file jSelectorZone.class.php

Documentation is available at jSelectorZone.class.php

  1. <?php
  2. /**
  3. * see jISelector.iface.php for documentation about selectors. Here abstract class for many selectors
  4. *
  5. @package     jelix
  6. @subpackage  core_selector
  7. @author      Laurent Jouanneau
  8. @copyright   2005-2008 Laurent Jouanneau
  9. @link        http://www.jelix.org
  10. @licence    GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  11. */
  12.  
  13.  
  14. /**
  15.  * Zone selector
  16.  *
  17.  * syntax : "module~zoneName".
  18.  * file : zones/zoneName.zone.php .
  19.  * @package    jelix
  20.  * @subpackage core_selector
  21.  */
  22. class jSelectorZone extends jSelectorModule {
  23.     protected $type = 'zone';
  24.     protected $_dirname = 'zones/';
  25.     protected $_suffix = '.zone.php';
  26.  
  27.     protected function _createCachePath(){
  28.         $this->_cachePath = '';
  29.     }
  30. }

Documentation generated on Wed, 04 Jan 2017 22:56:46 +0100 by phpDocumentor 1.4.3