本文整理匯總了PHP中Tab::getModuleTabList方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tab::getModuleTabList方法的具體用法?PHP Tab::getModuleTabList怎麽用?PHP Tab::getModuleTabList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tab
的用法示例。
在下文中一共展示了Tab::getModuleTabList方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getAdminTranslation
/**
* Get a translation for an admin controller
*
* @param $string
* @param string $class
* @param bool $addslashes
* @param bool $htmlentities
* @return string
*/
public static function getAdminTranslation($string, $class = 'AdminTab', $addslashes = false, $htmlentities = true, $sprintf = null)
{
static $modules_tabs = null;
// @todo remove global keyword in translations files and use static
global $_LANGADM;
if ($modules_tabs === null) {
$modules_tabs = Tab::getModuleTabList();
}
if ($_LANGADM == null) {
$iso = Context::getContext()->language->iso_code;
include_once _PS_TRANSLATIONS_DIR_ . $iso . '/admin.php';
}
if (isset($modules_tabs[strtolower($class)])) {
$class_name_controller = $class . 'controller';
// if the class is extended by a module, use modules/[module_name]/xx.php lang file
if (class_exists($class_name_controller) && Module::getModuleNameFromClass($class_name_controller)) {
$string = str_replace('\'', '\\\'', $string);
return Translate::getModuleTranslation(Module::$classInModule[$class_name_controller], $string, $class_name_controller);
}
}
$key = md5(str_replace('\'', '\\\'', $string));
if (isset($_LANGADM[$class . $key])) {
$str = $_LANGADM[$class . $key];
} else {
$str = Translate::getGenericAdminTranslation($string, $key, $_LANGADM);
}
if ($htmlentities) {
$str = htmlentities($str, ENT_QUOTES, 'utf-8');
}
$str = str_replace('"', '"', $str);
if ($sprintf !== null) {
$str = Translate::checkAndReplaceArgs($str, $sprintf);
}
return $addslashes ? addslashes($str) : stripslashes($str);
}