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