GetGroupRight($module_id); if($POST_RIGHT>="R") : IncludeModuleLangFile($_SERVER["DOCUMENT_ROOT"].BX_ROOT."/modules/main/options.php"); IncludeModuleLangFile(__FILE__); $arAllOptions = array( array("allow_anonymous", GetMessage("opt_anonym"), array("checkbox", "Y")), array("show_auth_links", GetMessage("opt_links"), array("checkbox", "Y")), array("subscribe_section", GetMessage("opt_sect"), array("text", 35)), array("posting_interval", GetMessage("opt_interval"), array("text", 5)), array("max_bcc_count", GetMessage("opt_max_bcc_count"), array("text", 5)), array("default_from", GetMessage("opt_def_from"), array("text", 35)), array("default_to", GetMessage("opt_def_to"), array("text", 35)), array("posting_charset", GetMessage("opt_encoding"), array("text-list", 3, 20)), array("allow_8bit_chars", GetMessage("opt_allow_8bit"), array("checkbox", "Y")), array("mail_additional_parameters", GetMessage("opt_mail_additional_parameters"), array("text", 35)), array("attach_images", GetMessage("opt_attach"), array("checkbox", "Y")), array("subscribe_confirm_period", GetMessage("opt_delete"), array("text", 5)), array("subscribe_auto_method", GetMessage("opt_method"), array("selectbox", array("agent"=>GetMessage("opt_method_agent"), "cron"=>GetMessage("opt_method_cron")))), array("subscribe_max_emails_per_hit", GetMessage("opt_max_per_hit"), array("text", 5)), array("subscribe_template_method", GetMessage("opt_template_method"), array("selectbox", array("agent"=>GetMessage("opt_method_agent"), "cron"=>GetMessage("opt_method_cron")))), array("subscribe_template_interval", GetMessage("opt_template_interval"), array("text", 10)), array("max_files_size", GetMessage("opt_max_files_size"), array("text", 5)), ); $aTabs = array( array("DIV" => "edit1", "TAB" => GetMessage("MAIN_TAB_SET"), "ICON" => "subscribe_settings", "TITLE" => GetMessage("MAIN_TAB_TITLE_SET")), array("DIV" => "edit2", "TAB" => GetMessage("MAIN_TAB_RIGHTS"), "ICON" => "subscribe_settings", "TITLE" => GetMessage("MAIN_TAB_TITLE_RIGHTS")), ); $tabControl = new CAdminTabControl("tabControl", $aTabs); if( $_SERVER["REQUEST_METHOD"] == "POST" && $Update.$Apply.$RestoreDefaults <> '' && $POST_RIGHT == "W" && check_bitrix_sessid() ) { if($RestoreDefaults <> '') { COption::RemoveOption("subscribe"); $z = CGroup::GetList("id", "asc", array("ACTIVE" => "Y", "ADMIN" => "N")); while($zr = $z->Fetch()) { $APPLICATION->DelGroupRight($module_id, array($zr["ID"])); } } else { foreach($arAllOptions as $arOption) { $name = $arOption[0]; if($arOption[2][0]=="text-list") { $val = ""; foreach($_POST[$name] as $postValue) { $postValue = trim($postValue); if($postValue <> '') $val .= ($val <> ""? ",": "").$postValue; } } else { $val = $_POST[$name]; } if($arOption[2][0] == "checkbox" && $val <> "Y") $val = "N"; if($name != "mail_additional_parameters" || $USER->IsAdmin()) COption::SetOptionString($module_id, $name, $val); } } CAgent::RemoveAgent("CPostingTemplate::Execute();", "subscribe"); if(COption::GetOptionString("subscribe", "subscribe_template_method")!=="cron") CAgent::AddAgent("CPostingTemplate::Execute();", "subscribe", "N", COption::GetOptionString("subscribe", "subscribe_template_interval")); $Update = $Update.$Apply; ob_start(); require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/admin/group_rights.php"); ob_end_clean(); if($_REQUEST["back_url_settings"] <> '') { if(($Apply <> '') || ($RestoreDefaults <> '')) LocalRedirect($APPLICATION->GetCurPage()."?mid=".urlencode($module_id)."&lang=".urlencode(LANGUAGE_ID)."&back_url_settings=".urlencode($_REQUEST["back_url_settings"])."&".$tabControl->ActiveTabParam()); else LocalRedirect($_REQUEST["back_url_settings"]); } else { LocalRedirect($APPLICATION->GetCurPage()."?mid=".urlencode($module_id)."&lang=".urlencode(LANGUAGE_ID)."&".$tabControl->ActiveTabParam()); } } ?>