本文整理汇总了PHP中Bitrix\Main\Localization\Loc::getIncludedFiles方法的典型用法代码示例。如果您正苦于以下问题:PHP Loc::getIncludedFiles方法的具体用法?PHP Loc::getIncludedFiles怎么用?PHP Loc::getIncludedFiles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bitrix\Main\Localization\Loc
的用法示例。
在下文中一共展示了Loc::getIncludedFiles方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: strtoupper
$_SESSION["SHOW_LANG_FILES"] = strtoupper($_GET["show_lang_files"]);
}
if ($_SESSION["SHOW_LANG_FILES"] != "Y" || defined('NO_LANG_FILES')) {
return;
}
if (defined('ADMIN_SECTION')) {
?>
<div style="overflow: auto; width:100%; height: 200px; background-color:#F8F9FC; border: 1px solid #E7EAF5"><?php
} else {
?>
<div style="overflow: auto; width:100%; height: 200px; background-color:white; border: 1px solid black"><?php
}
?>
<table cellpadding="2">
<?php
$NEW_LANGS = Main\Localization\Loc::getIncludedFiles();
if (!empty($NEW_LANGS)) {
$NEW_LANGS = array_values($NEW_LANGS);
}
$NEW_LANGS_1 = array();
$NEW_LANGS_2 = array();
for ($i = 0, $langCount = count($NEW_LANGS); $i < $langCount; $i++) {
$p = substr($NEW_LANGS[$i], strlen($_SERVER["DOCUMENT_ROOT"]));
if (substr($p, 0, 1) != '/') {
$p = '/' . $p;
}
if (strpos($p, "/menu") !== false || strpos($p, "/classes") !== false || strpos($p, "tools.") !== false || strpos($p, "/include.") !== false || strpos($p, "menu_template.php") !== false || strpos($p, ".menu.") !== false || strpos($p, "/top_panel.php") !== false || strpos($p, "prolog_main_admin.php") !== false || strpos($_SERVER["REQUEST_URI"], "/iblock_") === false && strpos($p, "/modules/iblock/lang/") !== false) {
$NEW_LANGS_1[] = $p;
} else {
$NEW_LANGS_2[] = $p;
}