| @@ 4361-4377 (lines=17) @@ | ||
| 4358 | * @throws EE_Error | |
| 4359 | * @return mixed whatever the plugin which calls add_filter decides | |
| 4360 | */ | |
| 4361 | 	public function __call($methodName,$args){ | |
| 4362 | $className=get_class($this); | |
| 4363 | 		$tagName="FHEE__{$className}__{$methodName}"; | |
| 4364 | 		if(!has_filter($tagName)){ | |
| 4365 | throw new EE_Error( | |
| 4366 | sprintf( | |
| 4367 | 					__( 'Method %1$s on model %2$s does not exist! You can create one with the following code in functions.php or in a plugin: %4$s function my_callback(%4$s \$previousReturnValue, EEM_Base \$object\ $argsArray=NULL ){%4$s     /*function body*/%4$s      return \$whatever;%4$s }%4$s add_filter( \'%3$s\', \'my_callback\', 10, 3 );', 'event_espresso' ), | |
| 4368 | $methodName, | |
| 4369 | $className, | |
| 4370 | $tagName, | |
| 4371 | '<br />' | |
| 4372 | ) | |
| 4373 | ); | |
| 4374 | } | |
| 4375 | ||
| 4376 | return apply_filters($tagName,null,$this,$args); | |
| 4377 | } | |
| 4378 | ||
| 4379 | ||
| 4380 | ||
| @@ 276-282 (lines=7) @@ | ||
| 273 | * @return EE_Form_Input_Base | |
| 274 | * @throws EE_Error | |
| 275 | */ | |
| 276 | 	public function get_input($name, $require_construction_to_be_finalized = TRUE ){ | |
| 277 | $subsection = $this->get_subsection($name, $require_construction_to_be_finalized); | |
| 278 | 		if( ! $subsection instanceof EE_Form_Input_Base){ | |
| 279 | 			throw new EE_Error(sprintf(__("Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", 'event_espresso'),$name, get_class($this),$subsection ? get_class($subsection) : __("NULL", 'event_espresso'))); | |
| 280 | } | |
| 281 | return $subsection; | |
| 282 | } | |
| 283 | ||
| 284 | ||
| 285 | ||