@@ 438-444 (lines=7) @@ | ||
435 | * @return EE_Form_Input_Base |
|
436 | * @throws EE_Error |
|
437 | */ |
|
438 | public function get_input($name, $require_construction_to_be_finalized = true) |
|
439 | { |
|
440 | $subsection = $this->get_subsection($name, $require_construction_to_be_finalized); |
|
441 | if (! $subsection instanceof EE_Form_Input_Base) { |
|
442 | throw new EE_Error( |
|
443 | sprintf( |
|
444 | __( |
|
445 | "Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", |
|
446 | 'event_espresso' |
|
447 | ), |
@@ 5313-5329 (lines=17) @@ | ||
5310 | * @throws EE_Error |
|
5311 | * @return mixed whatever the plugin which calls add_filter decides |
|
5312 | */ |
|
5313 | public function __call($methodName, $args) |
|
5314 | { |
|
5315 | $className = get_class($this); |
|
5316 | $tagName = "FHEE__{$className}__{$methodName}"; |
|
5317 | if (! has_filter($tagName)) { |
|
5318 | throw new EE_Error( |
|
5319 | sprintf( |
|
5320 | __('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 );', |
|
5321 | 'event_espresso'), |
|
5322 | $methodName, |
|
5323 | $className, |
|
5324 | $tagName, |
|
5325 | '<br />' |
|
5326 | ) |
|
5327 | ); |
|
5328 | } |
|
5329 | return apply_filters($tagName, null, $this, $args); |
|
5330 | } |
|
5331 | ||
5332 |