Code Duplication    Length = 7-17 lines in 2 locations

core/libraries/form_sections/base/EE_Form_Section_Proper.form.php 1 location

@@ 272-278 (lines=7) @@
269
	 * @return EE_Form_Input_Base
270
	 * @throws EE_Error
271
	 */
272
	public function get_input($name, $require_construction_to_be_finalized = TRUE ){
273
		$subsection = $this->get_subsection($name, $require_construction_to_be_finalized);
274
		if( ! $subsection instanceof EE_Form_Input_Base){
275
			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')));
276
		}
277
		return $subsection;
278
	}
279
280
281

core/db_models/EEM_Base.model.php 1 location

@@ 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