⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module.php

📁 是一个教学内容管理系统
💻 PHP
字号:
<?php
if (!defined('AT_INCLUDE_PATH')) { exit; }
if (!isset($this) || (isset($this) && (strtolower(get_class($this)) != 'module'))) { exit(__FILE__ . ' is not a Module'); }

define('AT_ADMIN_PRIV_LANGUAGES', $this->getAdminPrivilege());

if (admin_authenticate(AT_ADMIN_PRIV_LANGUAGES, TRUE) || admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {
	if (admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {
		$this->_pages['admin/config_edit.php']['children']  = array('admin/language.php');
		$this->_pages['admin/language.php']['parent'] = 'admin/config_edit.php';
	} else {
		$this->_pages[AT_NAV_ADMIN] = array('admin/language.php');
		$this->_pages['admin/language.php']['parent'] = AT_NAV_ADMIN;
	}

	//admin
	$this->_pages['admin/language.php']['title_var'] = 'languages';
	$this->_pages['admin/language.php']['guide']     = 'admin/?p=languages.php';
	$this->_pages['admin/language.php']['children']  = array('admin/language_import.php', 'admin/language_editor.php', 'admin/language_translate.php');

		$this->_pages['admin/language_add.php']['title_var'] = 'add_language';
		$this->_pages['admin/language_add.php']['parent']    = 'admin/language.php';

		$this->_pages['admin/language_edit.php']['title_var'] = 'edit_language';
		$this->_pages['admin/language_edit.php']['parent']    = 'admin/language.php';

		$this->_pages['admin/language_delete.php']['title_var'] = 'delete_language';
		$this->_pages['admin/language_delete.php']['parent']    = 'admin/language.php';

	$this->_pages['admin/language_import.php']['title_var'] = 'import';
	$this->_pages['admin/language_import.php']['parent']    = 'admin/language.php';

	$this->_pages['admin/language_translate.php']['title_var'] = 'translate';
	$this->_pages['admin/language_translate.php']['parent']    = 'admin/language.php';

	$this->_pages['admin/language_editor.php']['title_var'] = 'editor';
	$this->_pages['admin/language_editor.php']['parent']    = 'admin/language.php';

	$this->_pages['admin/language_term.php']['title_var'] = 'editor';
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -