1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
options.php
См. документацию.
1<?php
2
3use \Bitrix\Main\Localization\Loc;
4Loc::loadMessages(__FILE__);
5Loc::loadMessages($_SERVER['DOCUMENT_ROOT'].BX_ROOT.'/modules/main/options.php');
6
7$module_id = 'im';
8CModule::IncludeModule($module_id);
9
11
13{
14 $aMenu = array(
15 array(
16 "TEXT"=>Loc::getMessage("IM_OPTIONS_CONVERT"),
17 "LINK"=>"im_convert.php?lang=".LANGUAGE_ID,
18 "TITLE"=>Loc::getMessage("IM_OPTIONS_CONVERT_TITLE"),
19 ),
20 );
22 $context->Show();
23}
24
25
27 'user_name_template' => CIMContactList::GetUserNameTemplate(false,false,true)
28);
29if (!IsModuleInstalled('intranet'))
30{
31 $arDefaultValues['default']['path_to_user_profile'] = '/club/user/#user_id#/';
32}
33
34$arDefaultValues['extranet'] = array(
35 'user_name_template' => CIMContactList::GetUserNameTemplate(false,false,true)
36);
37
38$dbSites = CSite::GetList('', '', Array("ACTIVE" => "Y"));
41while ($site = $dbSites->Fetch())
42{
43 $site["ID"] = htmlspecialcharsbx($site["ID"]);
44 $site["NAME"] = htmlspecialcharsbx($site["NAME"]);
45 $arSites[] = $site;
46
47 $aSubTabs[] = array("DIV" => "opt_site_".$site["ID"], "TAB" => "(".$site["ID"].") ".$site["NAME"], 'TITLE' => '');
48}
50
52 array(
53 "DIV" => "edit1", "TAB" => Loc::getMessage("IM_TAB_SETTINGS"), "ICON" => "im_path", "TITLE" => Loc::getMessage("IM_TAB_TITLE_SETTINGS"),
54 ),
55);
56$tabControl = new CAdminTabControl("tabControl", $aTabs);
57
58if($_POST['Update'].$_GET['RestoreDefaults'] <> '' && check_bitrix_sessid() && $MOD_RIGHT >= 'W')
59{
60 if($_GET['RestoreDefaults'] <> '')
61 {
62 COption::RemoveOption("im", "view_offline");
63 COption::RemoveOption("im", "view_group");
64 COption::RemoveOption("im", "send_by_enter");
65 COption::RemoveOption("im", "correct_text");
66 COption::RemoveOption("im", "panel_position_horizontal");
67 COption::RemoveOption("im", "panel_position_vertical");
68 COption::RemoveOption("im", "load_last_message");
69 COption::RemoveOption("im", "load_last_notify");
70 COption::RemoveOption("im", "privacy_message");
71 COption::RemoveOption("im", "privacy_chat");
72 COption::RemoveOption("im", "privacy_call");
73 COption::RemoveOption("im", "privacy_search");
74 COption::RemoveOption("im", "privacy_profile");
75
76 COption::RemoveOption("im", "color_enable");
77 COption::RemoveOption("im", "open_chat_enable");
78 COption::RemoveOption("im", "general_chat_message_join");
79 COption::RemoveOption("im", "general_chat_message_leave");
80 COption::RemoveOption("im", "chat_message_start");
81 COption::RemoveOption("im", "contact_list_birthday");
82
83 foreach($arSites as $site)
84 {
85 $arDefValues = $site["LID"] == 'ex'? $arDefaultValues['extranet']: $arDefaultValues['default'];
86 foreach($arDefValues as $key=>$value)
87 {
88 if (in_array($key, Array("user_name_template")))
89 COption::RemoveOption("im", $key);
90 else
91 COption::SetOptionString("im", $key, $value, false, $site["LID"]);
92 }
93 }
94 }
95 elseif($_POST['Update'] <> '')
96 {
97 foreach($arSites as $site)
98 {
99 foreach($arDefaultValues['default'] as $key=>$value)
100 {
101 if (isset($_POST[$key."_".$site["LID"]]))
102 {
103 if (empty($_POST[$key."_".$site["LID"]]) && ($key == "user_name_template"))
104 COption::RemoveOption("im", "user_name_template", $site["LID"]);
105 else
106 COption::SetOptionString("im", $key, $_POST[$key."_".$site["LID"]], false, $site["LID"]);
107 }
108 }
109 }
110
111 if ($_POST['PANEL_LOCATION'] == 'TL')
112 {
113 $_POST['PANEL_POSITION_VERTICAL'] = 'top';
114 $_POST['PANEL_POSITION_HORIZONTAL'] = 'left';
115 }
116 elseif ($_POST['PANEL_LOCATION'] == 'TR')
117 {
118 $_POST['PANEL_POSITION_VERTICAL'] = 'top';
119 $_POST['PANEL_POSITION_HORIZONTAL'] = 'right';
120 }
121 elseif ($_POST['PANEL_LOCATION'] == 'TC')
122 {
123 $_POST['PANEL_POSITION_VERTICAL'] = 'top';
124 $_POST['PANEL_POSITION_HORIZONTAL'] = 'center';
125 }
126 elseif ($_POST['PANEL_LOCATION'] == 'BL')
127 {
128 $_POST['PANEL_POSITION_VERTICAL'] = 'bottom';
129 $_POST['PANEL_POSITION_HORIZONTAL'] = 'left';
130 }
131 elseif ($_POST['PANEL_LOCATION'] == 'BR')
132 {
133 $_POST['PANEL_POSITION_VERTICAL'] = 'bottom';
134 $_POST['PANEL_POSITION_HORIZONTAL'] = 'right';
135 }
136 elseif ($_POST['PANEL_LOCATION'] == 'BC')
137 {
138 $_POST['PANEL_POSITION_VERTICAL'] = 'bottom';
139 $_POST['PANEL_POSITION_HORIZONTAL'] = 'center';
140 }
141
142 $_POST['START_CHAT_MESSAGE'] = $_POST['START_CHAT_MESSAGE'] == 'first'? 'first': 'last';
143 $_POST['COLOR_ENABLE'] = isset($_POST['COLOR_ENABLE']);
144 $_POST['OPEN_CHAT_ENABLE'] = isset($_POST['OPEN_CHAT_ENABLE']);
145
146 $arSettings = CIMSettings::checkValues(CIMSettings::SETTINGS, Array(
147 'viewOffline' => !isset($_POST['VIEW_OFFLINE']),
148 'viewGroup' => !isset($_POST['VIEW_GROUP']),
149 'sendByEnter' => $_POST['SEND_BY_ENTER'] == 'Y',
150 'correctText' => $_POST['CORRECT_TEXT'] == 'Y',
151 'panelPositionHorizontal' => $_POST['PANEL_POSITION_HORIZONTAL'],
152 'panelPositionVertical' => $_POST['PANEL_POSITION_VERTICAL'],
153 'loadLastNotify' => isset($_POST['LOAD_LAST_NOTIFY']),
154 'privacyMessage' => $_POST['PRIVACY_MESSAGE'],
155 'privacyChat' => $_POST['PRIVACY_CHAT'],
156 'privacyCall' => $_POST['PRIVACY_CALL'],
157 'privacySearch' => $_POST['PRIVACY_SEARCH'],
158 'privacyProfile' => $_POST['PRIVACY_PROFILE'],
159 ));
160
161 if (in_array($_POST['CONTACT_LIST_BIRTHDAY'], ['all', 'department', 'none'], true))
162 {
163 COption::SetOptionString("im", "contact_list_birthday", $_POST['CONTACT_LIST_BIRTHDAY']);
164 }
165
166 COption::SetOptionString("im", "view_offline", $arSettings['viewOffline']);
167 COption::SetOptionString("im", "view_group", $arSettings['viewGroup']);
168 COption::SetOptionString("im", "send_by_enter", $arSettings['sendByEnter']);
169 COption::SetOptionString("im", "correct_text", $arSettings['correctText']);
170 COption::SetOptionString("im", "panel_position_horizontal", $arSettings['panelPositionHorizontal']);
171 COption::SetOptionString("im", "panel_position_vertical", $arSettings['panelPositionVertical']);
172 COption::SetOptionString("im", "load_last_notify", $arSettings['loadLastNotify']);
173 COption::SetOptionString("im", "privacy_message", $arSettings['privacyMessage']);
174 COption::SetOptionString("im", "privacy_chat", $arSettings['privacyChat']);
175 COption::SetOptionString("im", "privacy_call", $arSettings['privacyCall']);
176 COption::SetOptionString("im", "privacy_search", $arSettings['privacySearch']);
177 COption::SetOptionString("im", "privacy_profile", $arSettings['privacyProfile']);
178 COption::SetOptionString("im", "start_chat_message", $_POST['START_CHAT_MESSAGE']);
179 COption::SetOptionString("im", "color_enable", $_POST['COLOR_ENABLE']);
180 COption::SetOptionString("im", "open_chat_enable", $_POST['OPEN_CHAT_ENABLE']);
181
182 if (IsModuleInstalled('intranet'))
183 {
184 COption::SetOptionString("im", "contact_list_load", isset($_POST['CONTACT_LIST_LOAD']));
185 COption::SetOptionString("im", "general_chat_message_join", isset($_POST['GENERAL_CHAT_MESSAGE_JOIN']));
186 COption::SetOptionString("im", "general_chat_message_leave", isset($_POST['GENERAL_CHAT_MESSAGE_LEAVE']));
187 }
188
189 if($Update <> '' && $_REQUEST["back_url_settings"] <> '')
190 {
191 LocalRedirect($_REQUEST["back_url_settings"]);
192 }
193 else
194 {
195 LocalRedirect($APPLICATION->GetCurPage()."?mid=".urlencode($mid)."&lang=".urlencode(LANGUAGE_ID)."&back_url_settings=".urlencode($_REQUEST["back_url_settings"])."&".$tabControl->ActiveTabParam());
196 }
197 }
198}
199?>
200<form method="post" action="<?echo $APPLICATION->GetCurPage()?>?mid=<?=htmlspecialcharsbx($mid)?>&lang=<?echo LANG?>">
201<?php echo bitrix_sessid_post()?>
202<?php
203$tabControl->Begin();
204$tabControl->BeginNextTab();
205
207if ($arSettingsDefault['panelPositionVertical'] == 'top' && $arSettingsDefault['panelPositionHorizontal'] == 'left')
208 $arSettingsDefault['location'] = 'TL';
209else if ($arSettingsDefault['panelPositionVertical'] == 'top' && $arSettingsDefault['panelPositionHorizontal'] == 'right')
210 $arSettingsDefault['location'] = 'TR';
211else if ($arSettingsDefault['panelPositionVertical'] == 'top' && $arSettingsDefault['panelPositionHorizontal'] == 'center')
212 $arSettingsDefault['location'] = 'TC';
213else if ($arSettingsDefault['panelPositionVertical'] == 'bottom' && $arSettingsDefault['panelPositionHorizontal'] == 'left')
214 $arSettingsDefault['location'] = 'BL';
215else if ($arSettingsDefault['panelPositionVertical'] == 'bottom' && $arSettingsDefault['panelPositionHorizontal'] == 'right')
216 $arSettingsDefault['location'] = 'BR';
217else if ($arSettingsDefault['panelPositionVertical'] == 'bottom' && $arSettingsDefault['panelPositionHorizontal'] == 'center')
218 $arSettingsDefault['location'] = 'BC';
219
220$arReferenceId = Array(
221 'select' => Array('all', 'contact'),
222 'select3' => Array('all', 'contact', 'nobody'),
223 'sendByEnter' => Array('Y', 'N'),
224 'location' => Array('TL', 'TR', 'TC', 'BL', 'BR', 'BC'),
225 'birthday' => Array('all', 'department', 'none'),
226);
227$arReference = Array(
228 'select1' => Array(Loc::getMessage('IM_SELECT_1'), Loc::getMessage('IM_SELECT_2')),
229 'select2' => Array(Loc::getMessage('IM_SELECT_1_2'), Loc::getMessage('IM_SELECT_2_2')),
230 'select3' => Array(Loc::getMessage('IM_SELECT_1_2'), Loc::getMessage('IM_SELECT_2_2'), Loc::getMessage('IM_SELECT_2_3')),
231 'sendByEnter' => Array("Enter", "Ctrl+Enter"),
232 'location' => Array(Loc::getMessage('IM_PANEL_LOCATION_TL'), Loc::getMessage('IM_PANEL_LOCATION_TR'), Loc::getMessage('IM_PANEL_LOCATION_TC'), Loc::getMessage('IM_PANEL_LOCATION_BL'), Loc::getMessage('IM_PANEL_LOCATION_BR'), Loc::getMessage('IM_PANEL_LOCATION_BC')),
233 'birthday' => Array(Loc::getMessage('IM_CONTACT_LIST_BIRTHDAY_ALL'), Loc::getMessage('IM_CONTACT_LIST_BIRTHDAY_DEPARTMENT'), Loc::getMessage('IM_CONTACT_LIST_BIRTHDAY_NONE')),
234);
235?>
236 <tr>
237 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_VIEW_OFFLINE")?>:</td>
238 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="VIEW_OFFLINE" <?=(!$arSettingsDefault['viewOffline']?'checked="checked"' :'')?>></td>
239 </tr>
240 <tr>
241 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_VIEW_GROUP")?>:</td>
242 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="VIEW_GROUP" <?=(!$arSettingsDefault['viewGroup']?'checked="checked"' :'')?>></td>
243 </tr>
244 <tr>
245 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_SEND_BY_ENTER")?></td>
246 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("SEND_BY_ENTER", array('reference_id' => $arReferenceId['sendByEnter'], 'reference' => $arReference['sendByEnter']), $arSettingsDefault['sendByEnter']? 'Y': 'N');?></td>
247 </tr>
248 <?/*<tr>
249 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_CORRECT_TEXT")?></td>
250 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="CORRECT_TEXT" value="Y" <?=($arSettingsDefault['correctText']?'checked="checked"' :'')?>></td>
251 </tr>*/?>
252 <tr>
253 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PANEL_LOCATION")?></td>
254 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PANEL_LOCATION", array('reference_id' => $arReferenceId['location'], 'reference' => $arReference['location']), $arSettingsDefault['location']);?></td>
255 </tr>
256 <?if(!IsModuleInstalled('intranet')):?>
257 <tr>
258 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PRIVACY_MESS")?></td>
259 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PRIVACY_MESSAGE", array('reference_id' => $arReferenceId['select'], 'reference' => $arReference['select1']), $arSettingsDefault['privacyMessage']);?></td>
260 </tr>
261 <tr>
262 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PRIVACY_CALL")?></td>
263 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PRIVACY_CALL", array('reference_id' => $arReferenceId['select'], 'reference' => $arReference['select1']), $arSettingsDefault['privacyCall']);?></td>
264 </tr>
265 <tr>
266 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PRIVACY_CHAT")?></td>
267 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PRIVACY_CHAT", array('reference_id' => $arReferenceId['select'], 'reference' => $arReference['select2']), $arSettingsDefault['privacyChat']);?></td>
268 </tr>
269 <tr>
270 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PRIVACY_SEARCH")?></td>
271 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PRIVACY_SEARCH", array('reference_id' => $arReferenceId['select'], 'reference' => $arReference['select1']), $arSettingsDefault['privacySearch']);?></td>
272 </tr>
273 <?if(IsModuleInstalled('b24network')):?>
274 <tr>
275 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_PRIVACY_PROFILE")?></td>
276 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("PRIVACY_PROFILE", array('reference_id' => $arReferenceId['select3'], 'reference' => $arReference['select3']), $arSettingsDefault['privacyProfile']);?></td>
277 </tr>
278 <?endif;?>
279 <?endif;?>
280 <tr>
281 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_START_CHAT_MESSAGE")?></td>
282 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("START_CHAT_MESSAGE", array('reference_id' => Array('first', 'last'), 'reference' => Array(Loc::getMessage('IM_START_CHAT_MESSAGE_FIRST'), Loc::getMessage('IM_START_CHAT_MESSAGE_LAST'))), COption::GetOptionString("im", 'start_chat_message'));?></td>
283 </tr>
284 <?if(IsModuleInstalled('intranet')):?>
285 <tr>
286 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_CONTACT_LIST_BIRTHDAY")?></td>
287 <td class="adm-detail-content-cell-r" width="60%"><?=SelectBoxFromArray("CONTACT_LIST_BIRTHDAY", array('reference_id' => $arReferenceId['birthday'], 'reference' => $arReference['birthday']), COption::GetOptionString("im", 'contact_list_birthday'));?></td>
288 </tr>
289 <?endif;?>
290 <tr>
291 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_COLOR_ENABLE")?>:</td>
292 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="COLOR_ENABLE" <?=(COption::GetOptionString("im", 'color_enable')?'checked="checked"' :'')?>></td>
293 </tr>
294 <tr>
295 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_OPEN_CHAT_ENABLE")?>:</td>
296 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="OPEN_CHAT_ENABLE" <?=(COption::GetOptionString("im", 'open_chat_enable')?'checked="checked"' :'')?>></td>
297 </tr>
298 <?if(IsModuleInstalled('intranet')):?>
299 <tr>
300 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_CONTACT_LIST_LOAD")?>:</td>
301 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="CONTACT_LIST_LOAD" <?=(COption::GetOptionString("im", 'contact_list_load')?'checked="checked"' :'')?>></td>
302 </tr>
303 <tr>
304 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_GENERAL_CHAT_MESSAGE_JOIN")?>:</td>
305 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="GENERAL_CHAT_MESSAGE_JOIN" <?=(COption::GetOptionString("im", 'general_chat_message_join')?'checked="checked"' :'')?>></td>
306 </tr>
307 <tr>
308 <td class="adm-detail-content-cell-l" width="40%"><?=Loc::getMessage("IM_GENERAL_CHAT_MESSAGE_LEAVE")?>:</td>
309 <td class="adm-detail-content-cell-r" width="60%"><input type="checkbox" name="GENERAL_CHAT_MESSAGE_LEAVE" <?=(COption::GetOptionString("im", 'general_chat_message_leave')?'checked="checked"' :'')?>></td>
310 </tr>
311 <?endif;?>
312 <tr>
313 <td align="right"></td>
314 <td></td>
315 </tr>
316 <tr>
317 <td colspan="2">
318<?php
319$subTabControl->Begin();
320foreach ($arSites as $site)
321{
322 $subTabControl->BeginNextTab();
323?>
324 <table width="75%" align="center">
325<?php
326 $arDefValues = $site["LID"] == 'ex'? $arDefaultValues['extranet']: $arDefaultValues['default'];
327 foreach($arDefValues as $key=>$value)
328 {
329 if ($key == "user_name_template")
330 {
331 ?>
332 <tr>
333 <td align ="right" valign="middle" width="50%"><?=Loc::getMessage("IM_OPTIONS_NAME_TEMPLATE");?>:</td>
334 <td>
335 <?$curVal = CIMContactList::GetUserNameTemplate($site["LID"]);?>
336 <select name="<?=$key?>_<?=$site["LID"]?>">
337 <?
338 $arNameTemplates = CSite::GetNameTemplates();
339 $arNameTemplates = array_reverse($arNameTemplates, true); //prepend array with default '' => Site Format value
340 $arNameTemplates[""] = Loc::getMessage("IM_OPTIONS_NAME_IN_IM_FORMAT");
341 $arNameTemplates = array_reverse($arNameTemplates, true);
342 foreach ($arNameTemplates as $template => $phrase)
343 {
344 $template = str_replace(array("#NOBR#","#/NOBR#"), array("",""), $template);
345 ?><option value="<?= $template?>" <?=(($template == $curVal) ? " selected" : "")?> ><?= $phrase?></option><?
346 }
347 ?>
348 </select>
349 </td>
350 </tr>
351 <?
352 }
353 else
354 {
355?>
356 <tr>
357 <td align="right"><?php echo Loc::getMessage("IM_OPTIONS_".mb_strtoupper($key))?>:</td>
358 <td><input type="text" size="40" value="<?=htmlspecialcharsbx(COption::GetOptionString("im", $key, $value, $site["LID"]))?>" name="<?php echo $key?>_<?php echo $site["LID"]?>"></td>
359 </tr>
360
361<?php
362 }
363 }
364?>
365 </table>
366<?php
367}
368$subTabControl->End();
369?>
370 </td>
371 </tr>
372<?$tabControl->Buttons();?>
373<script>
374function RestoreDefaults()
375{
376 if(confirm('<?echo AddSlashes(Loc::getMessage('MAIN_HINT_RESTORE_DEFAULTS_WARNING'))?>'))
377 window.location = "<?echo $APPLICATION->GetCurPage()?>?RestoreDefaults=Y&lang=<?echo LANG?>&mid=<?echo urlencode($mid)."&".bitrix_sessid_get();?>";
378}
379</script>
380<input type="submit" name="Update" <?if ($MOD_RIGHT<'W') echo "disabled" ?> value="<?echo Loc::getMessage('MAIN_SAVE')?>">
381<input type="reset" name="reset" value="<?echo Loc::getMessage('MAIN_RESET')?>">
382<?=bitrix_sessid_post();?>
383<input type="button" <?if ($MOD_RIGHT<'W') echo "disabled" ?> title="<?echo Loc::getMessage('MAIN_HINT_RESTORE_DEFAULTS')?>" OnClick="RestoreDefaults();" value="<?echo Loc::getMessage('MAIN_RESTORE_DEFAULTS')?>">
384<?$tabControl->End();?>
385</form>
return select
Определения access_edit.php:440
$dbSites
Определения options.php:14
$arSites
Определения options.php:15
while($site=$dbSites->Fetch()) $subTabControl
Определения options.php:25
$aSubTabs
Определения options.php:16
const BX_ROOT
Определения bx_root.php:3
global $APPLICATION
Определения include.php:80
$module_id
Определения options.php:6
static GetUserNameTemplate($siteId=false, $langId=false, $getDefault=false)
Определения im_contact_list.php:2002
static GetOptionString($module_id, $name, $def="", $site=false, $bExactSite=false)
Определения option.php:8
static GetNameTemplates()
Определения site.php:848
static ConvertCount()
Определения im_convert.php:211
static GetDefaultSettings($type)
Определения im_settings.php:318
const SETTINGS
Определения im_settings.php:12
$MOD_RIGHT
Определения options.php:11
$template
Определения file_edit.php:49
bx popup label bx width30 PAGE_NEW_MENU_NAME text width
Определения file_new.php:677
</td ></tr ></table ></td ></tr >< tr >< td class="bx-popup-label bx-width30"><?=GetMessage("PAGE_NEW_TAGS")?> array( $site)
Определения file_new.php:804
$_REQUEST["admin_mnu_menu_id"]
Определения get_menu.php:8
if(CIMConvert::ConvertCount() > 0) $arDefaultValues['default']
Определения options.php:26
$Update
Определения options.php:212
$_SERVER["DOCUMENT_ROOT"]
Определения cron_frame.php:9
$tabControl
Определения csv_new_setup.php:244
$aTabs
Определения csv_new_setup.php:238
if(( $ACTION=='EXPORT_EDIT'||$ACTION=='EXPORT_COPY') &&$STEP==1) if($STEP > 1) if(( $ACTION=='EXPORT_EDIT'||$ACTION=='EXPORT_COPY') &&$STEP==2) if($STEP >2) $aMenu
Определения csv_new_setup.php:214
$context
Определения csv_new_setup.php:223
endif
Определения csv_new_setup.php:990
$mid
Определения options.php:27
bitrix_sessid_post($varname='sessid', $returnInvocations=false)
Определения tools.php:4700
check_bitrix_sessid($varname='sessid')
Определения tools.php:4686
IsModuleInstalled($module_id)
Определения tools.php:5301
htmlspecialcharsbx($string, $flags=ENT_COMPAT, $doubleEncode=true)
Определения tools.php:2701
LocalRedirect($url, $skip_security_check=false, $status="302 Found")
Определения tools.php:4005
SelectBoxFromArray( $strBoxName, $db_array, $strSelectedVal="", $strDetText="", $field1="class='typeselect'", $go=false, $form="form1")
Определения tools.php:216
if( $daysToExpire >=0 &&$daysToExpire< 60 elseif)( $daysToExpire< 0)
Определения prolog_main_admin.php:393
<? endif;?> window document title
Определения prolog_main_admin.php:76
if(empty($signedUserToken)) $key
Определения quickway.php:257
font size
Определения invoice.php:442
text align
Определения template.php:556
$site
Определения yandex_run.php:614