00001 <?php 00014 import('handler.validation.HandlerValidator'); 00015 00016 class HandlerValidatorSchedConf extends HandlerValidator { 00021 function HandlerValidatorSchedConf(&$handler) { 00022 parent::HandlerValidator($handler); 00023 } 00024 00030 function isValid() { 00031 $conference =& Request::getConference(); 00032 $schedConf =& Request::getSchedConf(); 00033 00034 if ( !$conference || !$schedConf ) return false; 00035 return true; 00036 } 00037 } 00038 00039 ?>
1.4.7