@@ 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 | ), |
@@ 5329-5345 (lines=17) @@ | ||
5326 | * @throws EE_Error |
|
5327 | * @return mixed whatever the plugin which calls add_filter decides |
|
5328 | */ |
|
5329 | public function __call($methodName, $args) |
|
5330 | { |
|
5331 | $className = get_class($this); |
|
5332 | $tagName = "FHEE__{$className}__{$methodName}"; |
|
5333 | if (! has_filter($tagName)) { |
|
5334 | throw new EE_Error( |
|
5335 | sprintf( |
|
5336 | __('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 );', |
|
5337 | 'event_espresso'), |
|
5338 | $methodName, |
|
5339 | $className, |
|
5340 | $tagName, |
|
5341 | '<br />' |
|
5342 | ) |
|
5343 | ); |
|
5344 | } |
|
5345 | return apply_filters($tagName, null, $this, $args); |
|
5346 | } |
|
5347 | ||
5348 |