Repellent
8 years ago
1 changed files with 62 additions and 0 deletions
@ -0,0 +1,62 @@
|
||||
<?php |
||||
|
||||
/** |
||||
* AVE.cms - Модуль Настройки captcha |
||||
* @autor Repellent |
||||
* @package AVE.cms |
||||
* @subpackage editcaptcha |
||||
* @filesource |
||||
*/ |
||||
|
||||
if(!defined('BASE_DIR')) exit; |
||||
|
||||
if (defined('ACP')) |
||||
{ |
||||
|
||||
$modul = array(); |
||||
$modul['ModuleName'] = "Настройки captcha"; |
||||
$modul['ModuleSysName'] = "editcaptcha"; |
||||
$modul['ModuleVersion'] = "1.0"; |
||||
$modul['ModuleDescription'] = "Модуль позволяет настроить визуальный вывод captcha"; |
||||
$modul['ModuleAutor'] = "Repellent"; |
||||
$modul['ModuleCopyright'] = "© AVE.cms Team 2016"; |
||||
$modul['ModuleStatus'] = 1; |
||||
$modul['ModuleIsFunction'] = 0; |
||||
$modul['ModuleTemplate'] = 0; |
||||
$modul['ModuleAdminEdit'] = 1; |
||||
$modul['ModuleFunction'] = 'editcaptcha'; |
||||
$modul['ModuleTag'] = null; |
||||
$modul['ModuleTagLink'] = null; |
||||
$modul['ModuleAveTag'] = null; |
||||
$modul['ModulePHPTag'] = null; |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Админка |
||||
*/ |
||||
if (defined('ACP') && (isset($_REQUEST['moduleaction']))) |
||||
{ |
||||
// класс |
||||
require_once(BASE_DIR . '/modules/editcaptcha/class.editcaptcha.php'); |
||||
|
||||
$captcha = new ModuleEditcaptcha; |
||||
|
||||
// папка с шаблонами |
||||
$captcha->tpl_dir = BASE_DIR . '/modules/editcaptcha/templates/'; |
||||
|
||||
// ленги |
||||
$AVE_Template->config_load(BASE_DIR . '/modules/editcaptcha/lang/' . $_SESSION['admin_language'] . '.txt', 'admin'); |
||||
$AVE_Template->assign('config_vars', $AVE_Template->get_config_vars()); |
||||
|
||||
|
||||
|
||||
switch($_REQUEST['moduleaction']) |
||||
{ |
||||
case '1': |
||||
$captcha->editCaptcha(); |
||||
break; |
||||
|
||||
} |
||||
} |
||||
?> |
Loading…
Reference in new issue