@@ 1415-1421 (lines=7) @@ | ||
1412 | * @param string $key - url param key indicating a route is being called |
|
1413 | * @return string |
|
1414 | */ |
|
1415 | public static function get_forward($route = null, $status = 0, $key = 'ee') |
|
1416 | { |
|
1417 | do_action('AHEE__EE_Config__get_forward__begin', $route, $status); |
|
1418 | if (isset(EE_Config::$_module_forward_map[$key][$route][$status])) { |
|
1419 | return apply_filters( |
|
1420 | 'FHEE__EE_Config__get_forward', |
|
1421 | EE_Config::$_module_forward_map[$key][$route][$status], |
|
1422 | $route, |
|
1423 | $status |
|
1424 | ); |
|
@@ 1481-1487 (lines=7) @@ | ||
1478 | * @param string $key - url param key indicating a route is being called |
|
1479 | * @return string |
|
1480 | */ |
|
1481 | public static function get_view($route = null, $status = 0, $key = 'ee') |
|
1482 | { |
|
1483 | do_action('AHEE__EE_Config__get_view__begin', $route, $status); |
|
1484 | if (isset(EE_Config::$_module_view_map[$key][$route][$status])) { |
|
1485 | return apply_filters( |
|
1486 | 'FHEE__EE_Config__get_view', |
|
1487 | EE_Config::$_module_view_map[$key][$route][$status], |
|
1488 | $route, |
|
1489 | $status |
|
1490 | ); |