Documentation is available at DottedPairValidatorRule.class.php
- <?php
- require_once(HARMONI."utilities/FieldSetValidator/rules/RegexValidatorRule.class.php");
- /**
- * The DottedPairValidatorRule checks to see if a string is of a "module.action"
- * dotted-pair format.
- *
- * @package harmoni.actions
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: DottedPairValidatorRule.class.php,v 1.8 2007/09/04 20:25:29 adamfranco Exp $
- */
- class DottedPairValidatorRule
- extends RegexValidatorRule
- {
- /**
- * the constructor
- *
- * @access public
- * @return void
- ***/
- function DottedPairValidatorRule() {
- $this->_regex = "^[[:alnum:]_-]+\.([[:alnum:]_-]+)|\*$"; // matches a dotted-pair for modules.actions
- }
- /**
- * This is a static method to return an already-created instance of a validator
- * rule. There are at most about a hundred unique rule objects in use durring
- * any given execution cycle, but rule objects are instantiated hundreds of
- * thousands of times.
- *
- * This method follows a modified Singleton pattern
- *
- * @return object ValidatorRule
- * @access public
- * @static
- * @since 3/28/05
- */
- function getRule () {
- // Because there is no way in PHP to get the class name of the descendent
- // class on which this method is called, this method must be implemented
- // in each descendent class.
- if (!is_array($GLOBALS['validator_rules']))
- $GLOBALS['validator_rules'] = array();
- $class = __CLASS__;
- if (!isset($GLOBALS['validator_rules'][$class]))
- $GLOBALS['validator_rules'][$class] = new $class;
- return $GLOBALS['validator_rules'][$class];
- }
- }
- ?>
Documentation generated on Wed, 19 Sep 2007 10:22:49 -0400 by phpDocumentor 1.3.0RC3