Code Duplication    Length = 5-6 lines in 7 locations

core/EE_Module_Request_Router.core.php 1 location

@@ 151-155 (lines=5) @@
148
		// grab module name
149
		$module_name = $module_method[0];
150
		// verify that a class method was registered properly
151
		if ( ! isset( $module_method[1] )) {
152
			$msg = sprintf( __( 'A class method for the %s  route has not been properly registered.', 'event_espresso' ), $current_route );
153
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
154
			return FALSE;
155
		}
156
		// grab method
157
		$method = $module_method[1];
158
		// verify that class exists

core/helpers/EEH_Formatter.helper.php 1 location

@@ 333-338 (lines=6) @@
330
	 */
331
	public static function format ( $obj_with_address = null, $type = 'multiline', $use_schema = true, $add_wrapper = true ) {
332
		// check that incoming object implements the EEI_Address interface
333
		if ( ! $obj_with_address instanceof EEI_Address ) {
334
			$msg = __( 'The address could not be formatted.', 'event_espresso' );
335
			$dev_msg = __( 'The EE_Address_Formatter requires passed objects to implement the EEI_Address interface.', 'event_espresso' );
336
			EE_Error::add_error( $msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__ );
337
			return null;
338
		}
339
		// obtain an address formatter
340
		$formatter = EEH_Address::_get_formatter( $type );
341
		// apply schema.org formatting ?

modules/ticket_selector/EED_Ticket_Selector.module.php 1 location

@@ 250-255 (lines=6) @@
247
		} else if ( $event instanceof WP_Post && $event->post_type == 'espresso_events' ) {
248
			$event->EE_Event = EEM_Event::instance()->instantiate_class_from_post_object( $event );
249
			self::$_event = $event->EE_Event;
250
		} else {
251
			$user_msg = __( 'No Event object or an invalid Event object was supplied.', 'event_espresso' );
252
			$dev_msg = $user_msg . __( 'In order to generate a ticket selector, please ensure you are passing either an EE_Event object or a WP_Post object of the post type "espresso_event" to the EE_Ticket_Selector class constructor.', 'event_espresso' );
253
			EE_Error::add_error( $user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__ );
254
			return false;
255
		}
256
		return true;
257
	}
258

core/EE_Config.core.php 4 locations

@@ 1328-1332 (lines=5) @@
1325
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1326
			return false;
1327
		}
1328
		if ( empty( $route ) ) {
1329
			$msg = sprintf( __( 'No route has been supplied.', 'event_espresso' ), $route );
1330
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1331
			return false;
1332
		}
1333
		if ( ! method_exists( 'EED_' . $module, $method_name ) ) {
1334
			$msg = sprintf(
1335
				__( 'A valid class method for the %s route has not been supplied.', 'event_espresso' ),
@@ 1333-1337 (lines=5) @@
1330
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1331
			return false;
1332
		}
1333
		if ( ! method_exists( 'EED_' . $module, $method_name ) ) {
1334
			$msg = sprintf(
1335
				__( 'A valid class method for the %s route has not been supplied.', 'event_espresso' ),
1336
				$route
1337
			);
1338
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1339
			return false;
1340
		}
@@ 1399-1403 (lines=5) @@
1396
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1397
			return false;
1398
		}
1399
		if ( empty( $forward ) ) {
1400
			$msg = sprintf( __( 'No forwarding route has been supplied.', 'event_espresso' ), $route );
1401
			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1402
			return false;
1403
		}
1404
		if ( is_array( $forward ) ) {
1405
			if ( ! isset( $forward[1] ) ) {
1406
				$msg = sprintf(
@@ 1405-1409 (lines=5) @@
1402
			return false;
1403
		}
1404
		if ( is_array( $forward ) ) {
1405
			if ( ! isset( $forward[1] ) ) {
1406
				$msg = sprintf(
1407
					__( 'A class method for the %s forwarding route has not been supplied.', 'event_espresso' ),
1408
					$route
1409
				);
1410
				EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1411
				return false;
1412
			}