1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- function set_template_handler($function_name) {
- elgg_deprecated_notice("Support for custom template handlers will end soon.", "1.12");
- global $CONFIG;
- if (is_callable($function_name)) {
- $CONFIG->template_handler = $function_name;
- return true;
- }
- return false;
- }
- function elgg_get_view_location($view, $viewtype = '') {
- elgg_deprecated_notice(__FUNCTION__ . " is going away in 2.0.", "1.12");
- return _elgg_services()->views->getViewLocation($view, $viewtype);
- }
|