|
@@ 1317-1321 (lines=5) @@
|
| 1314 |
|
*/ |
| 1315 |
|
public static function register_forward( $route = NULL, $status = 0, $forward = NULL, $key = 'ee' ) { |
| 1316 |
|
do_action( 'AHEE__EE_Config__register_forward',$route,$status,$forward ); |
| 1317 |
|
if ( ! isset( EE_Config::$_module_route_map[ $key ][ $route ] ) || empty( $route )) { |
| 1318 |
|
$msg = sprintf( __( 'The module route %s for this forward has not been registered.', 'event_espresso' ), $route ); |
| 1319 |
|
EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ ); |
| 1320 |
|
return FALSE; |
| 1321 |
|
} |
| 1322 |
|
if ( empty( $forward )) { |
| 1323 |
|
$msg = sprintf( __( 'No forwarding route has been supplied.', 'event_espresso' ), $route ); |
| 1324 |
|
EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
@@ 1380-1384 (lines=5) @@
|
| 1377 |
|
*/ |
| 1378 |
|
public static function register_view( $route = NULL, $status = 0, $view = NULL, $key = 'ee' ) { |
| 1379 |
|
do_action( 'AHEE__EE_Config__register_view__begin',$route,$status,$view ); |
| 1380 |
|
if ( ! isset( EE_Config::$_module_route_map[ $key ][ $route ] ) || empty( $route )) { |
| 1381 |
|
$msg = sprintf( __( 'The module route %s for this view has not been registered.', 'event_espresso' ), $route ); |
| 1382 |
|
EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ ); |
| 1383 |
|
return FALSE; |
| 1384 |
|
} |
| 1385 |
|
if ( ! is_readable( $view )) { |
| 1386 |
|
$msg = sprintf( __( 'The %s view file could not be found or is not readable due to file permissions.', 'event_espresso' ), $view ); |
| 1387 |
|
EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ ); |