PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/afmediosc/plugins/system/jat3/core/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/afmediosc/plugins/system/jat3/core/hook.php |
<?php
/*
# ------------------------------------------------------------------------
# JA T3v2 Plugin - Template framework for Joomla 1.5
# ------------------------------------------------------------------------
# Copyright (C) 2004-2010 JoomlArt.com. All Rights Reserved.
# @license - GNU/GPL V2, http://www.gnu.org/licenses/gpl2.html. For details
# on licensing, Please Read Terms of Use at http://www.joomlart.com/terms_of_use.html.
# Author: JoomlArt.com
# Websites: http://www.joomlart.com - http://www.joomlancers.com.
# ------------------------------------------------------------------------
*/
/*
T3Hook: load custom code
hook function is defined in theme with format: [theme folder]_[theme name]_[hook_name]
Eg: core_blue_custom_body_class: defined in theme blue in core folder
Eg: custom_body_class: defined in default theme of template
*/
class T3Hook extends JObject {
function _ ($hookname, $args = array()) {
//load custom hook
T3Hook::_load();
//find hook function
$themes = T3Common::get_active_themes();
foreach ($themes as $theme) {
$func = $theme[0]."_".$theme[1]."_".$hookname;
if (function_exists ($func)) return call_user_func_array ($func, $args);
}
if (function_exists ($hookname)) return call_user_func_array ($hookname, $args);
if (function_exists ("T3Hook::$hookname")) return call_user_func_array ("T3Hook::$hookname", $args);
return false;
}
function _load () {
if (defined ('_T3_HOOK_CUSTOM')) return;
define ('_T3_HOOK_CUSTOM', 1);
//include hook. Get all path to hook.php in themes
$paths = T3Path::getPath ('hook.php', true);
if (is_array($paths)) {
foreach ($paths as $path) include ($path);
}
}
}