Current Path : /home/bitrix/ext_www/shuft.com.ua/bitrix/modules/subscribe/ |
Current File : /home/bitrix/ext_www/shuft.com.ua/bitrix/modules/subscribe/options.php |
<? $module_id = "subscribe"; $POST_RIGHT = $APPLICATION->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" && strlen($Update.$Apply.$RestoreDefaults) > 0 && $POST_RIGHT == "W" && check_bitrix_sessid() ) { if(strlen($RestoreDefaults)>0) { COption::RemoveOption("subscribe"); $z = CGroup::GetList($v1="id",$v2="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(strlen($postValue) > 0) $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(strlen($_REQUEST["back_url_settings"]) > 0) { if((strlen($Apply) > 0) || (strlen($RestoreDefaults) > 0)) 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()); } } ?> <form method="post" action="<?echo $APPLICATION->GetCurPage()?>?mid=<?=urlencode($module_id)?>&lang=<?=LANGUAGE_ID?>"> <? $tabControl->Begin(); $tabControl->BeginNextTab(); foreach($arAllOptions as $Option) { $type = $Option[2]; $val = COption::GetOptionString($module_id, $Option[0]); ?> <tr> <td width="40%" <?if($type[0]=="textarea" || $type[0]=="text-list") echo 'class="adm-detail-valign-top"'?>> <label for="<?echo htmlspecialcharsbx($Option[0])?>"><?echo $Option[1]?></label> <td width="60%"> <? if($type[0]=="checkbox") { ?><input type="checkbox" name="<?echo htmlspecialcharsbx($Option[0])?>" id="<?echo htmlspecialcharsbx($Option[0])?>" value="Y"<?if($val=="Y")echo" checked";?>><? } elseif($type[0]=="text") { ?><input type="text" size="<?echo $type[1]?>" maxlength="255" value="<?echo htmlspecialcharsbx($val)?>" name="<?echo htmlspecialcharsbx($Option[0])?>"><? } elseif($type[0]=="textarea") { ?><textarea rows="<?echo $type[1]?>" cols="<?echo $type[2]?>" name="<?echo htmlspecialcharsbx($Option[0])?>"><?echo htmlspecialcharsbx($val)?></textarea><? } elseif($type[0]=="text-list") { $aVal = explode(",", $val); foreach($aVal as $val) { ?><input type="text" size="<?echo $type[2]?>" value="<?echo htmlspecialcharsbx($val)?>" name="<?echo htmlspecialcharsbx($Option[0])."[]"?>"><br><? } for($j=0; $j<$type[1]; $j++) { ?><input type="text" size="<?echo $type[2]?>" value="" name="<?echo htmlspecialcharsbx($Option[0])."[]"?>"><br><? } } elseif($type[0]=="selectbox") { ?><select name="<?echo htmlspecialcharsbx($Option[0])?>"><? foreach($type[1] as $optionValue => $optionDisplay) { ?><option value="<?echo $optionValue?>"<?if($val==$optionValue)echo" selected"?>><?echo htmlspecialcharsbx($optionDisplay)?></option><? } ?></select><? } ?></td> </tr> <? } ?> <?$tabControl->BeginNextTab();?> <?require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/admin/group_rights.php");?> <?$tabControl->Buttons();?> <input <?if ($POST_RIGHT<"W") echo "disabled" ?> type="submit" name="Update" value="<?=GetMessage("MAIN_SAVE")?>" title="<?=GetMessage("MAIN_OPT_SAVE_TITLE")?>" class="adm-btn-save"> <input <?if ($POST_RIGHT<"W") echo "disabled" ?> type="submit" name="Apply" value="<?=GetMessage("MAIN_OPT_APPLY")?>" title="<?=GetMessage("MAIN_OPT_APPLY_TITLE")?>"> <?if(strlen($_REQUEST["back_url_settings"])>0):?> <input <?if ($POST_RIGHT<"W") echo "disabled" ?> type="button" name="Cancel" value="<?=GetMessage("MAIN_OPT_CANCEL")?>" title="<?=GetMessage("MAIN_OPT_CANCEL_TITLE")?>" onclick="window.location='<?echo htmlspecialcharsbx(CUtil::addslashes($_REQUEST["back_url_settings"]))?>'"> <input type="hidden" name="back_url_settings" value="<?=htmlspecialcharsbx($_REQUEST["back_url_settings"])?>"> <?endif?> <input <?if ($POST_RIGHT<"W") echo "disabled" ?> type="submit" name="RestoreDefaults" title="<?echo GetMessage("MAIN_HINT_RESTORE_DEFAULTS")?>" OnClick="return confirm('<?echo AddSlashes(GetMessage("MAIN_HINT_RESTORE_DEFAULTS_WARNING"))?>')" value="<?echo GetMessage("MAIN_RESTORE_DEFAULTS")?>"> <?=bitrix_sessid_post();?> <?$tabControl->End();?> </form> <?endif;?>