本文整理汇总了PHP中L::import方法的典型用法代码示例。如果您正苦于以下问题:PHP L::import方法的具体用法?PHP L::import怎么用?PHP L::import使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类L
的用法示例。
在下文中一共展示了L::import方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: D
<?php
namespace qg;
qg::need('fileEditor');
qg::need('cms.cont.flexible');
qg::need('cms.cont.phpfile');
qg::need('cms.cont.notFound1');
qg::need('cms.cont.text');
if (!D()->one("SELECT id FROM page WHERE id = 1")) {
D()->query("INSERT INTO page SET id=1, access=1, visible=1, searchable=1, module = 'cms.layout.custom.5', basis = 0, type='p'");
Page(1)->Title()->get('de')->set('root');
}
G()->SET['cms']['editmode']->custom();
$dir = sysPATH . $module . '/locale/';
foreach (scandir($dir) as $file) {
preg_match('/([a-z]{2})\\.json/', $file, $matches);
if (isset($matches[1])) {
$lang = $matches[1];
$json = file_get_contents($dir . $file);
L::import($lang, 'cms', $json);
}
}