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