Code Duplication    Length = 3-12 lines in 3 locations

core/EE_Registry.core.php 1 location

@@ 680-690 (lines=11) @@
677
		// don't give up! you gotta...
678
		try {
679
			//does the file exist and can it be read ?
680
			if ( ! $path ) {
681
				// so sorry, can't find the file
682
				throw new EE_Error (
683
					sprintf(
684
						__( 'The %1$s file %2$s could not be located or is not readable due to file permissions. Please ensure that the following filepath(s) are correct: %3$s', 'event_espresso' ),
685
						trim( $type, '.' ),
686
						$class_name,
687
						'<br />' . implode( ',<br />', $file_paths )
688
					)
689
				);
690
			}
691
			// get the file
692
			require_once( $path );
693
			// if the class isn't already declared somewhere

core/db_models/EEM_Base.model.php 2 locations

@@ 3034-3036 (lines=3) @@
3031
				'minimum',
3032
				'none'
3033
			);
3034
		if( ! in_array($use_default_where_conditions,$allowed_used_default_where_conditions_values)){
3035
			throw new EE_Error(sprintf(__("You passed an invalid value to the query parameter 'default_where_conditions' of '%s'. Allowed values are %s", "event_espresso"),$use_default_where_conditions,implode(", ",$allowed_used_default_where_conditions_values)));
3036
		}
3037
		$universal_query_params = array();
3038
		if( $use_default_where_conditions === 'all' || $use_default_where_conditions === 'this_model_only' ){
3039
			$universal_query_params = $this->_get_default_where_conditions();
@@ 4930-4941 (lines=12) @@
4927
	 */
4928
	static public function verify_is_valid_cap_context( $context ) {
4929
		$valid_cap_contexts = EEM_Base::valid_cap_contexts();
4930
		if( in_array( $context, $valid_cap_contexts ) ) {
4931
			return true;
4932
		}else{
4933
			throw new EE_Error(
4934
				sprintf(
4935
					__( 'Context "%1$s" passed into model "%2$s" is not a valid context. They are: %3$s', 'event_espresso' ),
4936
					$context,
4937
					'EEM_Base' ,
4938
					implode(',', $valid_cap_contexts )
4939
				)
4940
			);
4941
		}
4942
	}
4943
4944
	/**