本文整理汇总了PHP中I18n::addDefault方法的典型用法代码示例。如果您正苦于以下问题:PHP I18n::addDefault方法的具体用法?PHP I18n::addDefault怎么用?PHP I18n::addDefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类I18n
的用法示例。
在下文中一共展示了I18n::addDefault方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
/**
* Initialize all activated plugin by including is index.php file.
* Also load all language files for plugins available in plugins directory.
*/
static function init()
{
$dir = PLUGINS_ROOT . DS;
if ($handle = opendir($dir)) {
while (false !== ($plugin_id = readdir($handle))) {
$file = $dir . $plugin_id . DS . 'i18n' . DS . I18n::getLocale() . '-message.php';
$default_file = PLUGINS_ROOT . DS . $plugin_id . DS . 'i18n' . DS . DEFAULT_LOCALE . '-message.php';
if (file_exists($file)) {
$array = (include $file);
I18n::add($array);
}
if (file_exists($default_file)) {
$array = (include $default_file);
I18n::addDefault($array);
}
}
}
self::$plugins = unserialize(Setting::get('plugins'));
foreach (self::$plugins as $plugin_id => $tmp) {
$file = PLUGINS_ROOT . DS . $plugin_id . DS . 'index.php';
if (file_exists($file)) {
include $file;
}
}
}
示例2: _set
public function _set()
{
// SET PERMISSIONS
$paw = array("user_view", "user_add", "user_edit", "user_delete", "user_activate", "user_config", "user_fields_config", "pawu_list_view", "pawu_list_manage", "pawu_perm_view", "pawu_perm_manage");
$this->startup = true;
foreach ($paw as $p) {
if (!$this->isPermission($p)) {
$this->updatePermissions($p, array("administrator"));
}
}
$this->startup = false;
// SET ROLE LABELS
$roles = array();
foreach ($this->getRoles(NULL, false) as $role) {
$roles[ucwords($role["name"])] = $role["label"];
}
I18n::addDefault($roles);
}