Example #1
0
 /**
 	Returns whether the given input is a valid form option for the associated widget.
 
 	@param	$mInput			The input.
 	@return	bool			Whether the input is a valid form option.
 */
 protected function isValidInput($mInput)
 {
     $oHelper = new weeFormOptionsHelper($this->oWidget);
     return $oHelper->isInOptions($mInput);
 }