Your IP : 3.133.149.23
<?php
##############################################
# Bitrix Site Manager #
# Copyright (c) 2002-2007 Bitrix #
# http://www.bitrixsoft.com #
# mailto:admin@bitrixsoft.com #
##############################################
require_once(__DIR__."/../include/prolog_admin_before.php");
/**
* @global CUser $USER
* @global CMain $APPLICATION
*/
if(!($USER->CanDoOperation('view_subordinate_users') || $USER->CanDoOperation('view_all_users')))
$APPLICATION->AuthForm(GetMessage("ACCESS_DENIED"));
IncludeModuleLangFile($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/admin/user_admin.php");
IncludeModuleLangFile(__FILE__);
$FN = preg_replace("/[^a-z0-9_\\[\\]:]/i", "", $_REQUEST["FN"]);
$FC = preg_replace("/[^a-z0-9_\\[\\]:]/i", "", $_REQUEST["FC"]);
if($FN == "")
$FN = "find_form";
if($FC == "")
$FC = "USER_ID";
if (isset($_REQUEST['JSFUNC']))
{
$JSFUNC = preg_replace("/[^a-z0-9_\\[\\]:]/i", "", $_REQUEST['JSFUNC']);
}
else
{
$JSFUNC = '';
}
// ������������� �����
$sTableID = "tbl_user_popup";
// ���������� ����������
$oSort = new CAdminSorting($sTableID, "ID", "asc");
// ���������� ������
$lAdmin = new CAdminList($sTableID, $oSort);
// ���������� ���������� ������ - �����
$arFilterFields = Array(
"find",
"find_type",
"find_id",
"find_timestamp_1",
"find_timestamp_2",
"find_last_login_1",
"find_last_login_2",
"find_active",
"find_login",
"find_name",
"find_email",
"find_keywords",
"find_group_id"
);
$lAdmin->InitFilter($arFilterFields);
//���������� ������� ������ �� GetList
function CheckFilter($FilterArr) // �������� ������� �����
{
global $strError;
foreach($FilterArr as $f)
global $$f;
$str = "";
if(trim($find_timestamp_1) <> '' || trim($find_timestamp_2) <> '')
{
$date_1_ok = false;
$date1_stm = MkDateTime(FmtDate($find_timestamp_1,"D.M.Y"),"d.m.Y");
$date2_stm = MkDateTime(FmtDate($find_timestamp_2,"D.M.Y")." 23:59","d.m.Y H:i");
if (!$date1_stm && trim($find_timestamp_1) <> '')
$str.= GetMessage("MAIN_WRONG_TIMESTAMP_FROM")."<br>";
else $date_1_ok = true;
if (!$date2_stm && trim($find_timestamp_2) <> '')
$str.= GetMessage("MAIN_WRONG_TIMESTAMP_TILL")."<br>";
elseif ($date_1_ok && $date2_stm <= $date1_stm && $date2_stm <> '')
$str.= GetMessage("MAIN_FROM_TILL_TIMESTAMP")."<br>";
}
if(trim($find_last_login_1) <> '' || trim($find_last_login_2) <> '')
{
$date_1_ok = false;
$date1_stm = MkDateTime(FmtDate($find_last_login_1,"D.M.Y"),"d.m.Y");
$date2_stm = MkDateTime(FmtDate($find_last_login_2,"D.M.Y")." 23:59","d.m.Y H:i");
if(!$date1_stm && trim($find_last_login_1) <> '')
$str.= GetMessage("MAIN_WRONG_LAST_LOGIN_FROM")."<br>";
else
$date_1_ok = true;
if(!$date2_stm && trim($find_last_login_2) <> '')
$str.= GetMessage("MAIN_WRONG_LAST_LOGIN_TILL")."<br>";
elseif($date_1_ok && $date2_stm <= $date1_stm && $date2_stm <> '')
$str.= GetMessage("MAIN_FROM_TILL_LAST_LOGIN")."<br>";
}
$strError .= $str;
if($str <> '')
{
global $lAdmin;
$lAdmin->AddFilterError($str);
return false;
}
return true;
}
$arFilter = Array();
if(CheckFilter($arFilterFields))
{
$arFilter = Array(
"ID" => $find_id,
"TIMESTAMP_1" => $find_timestamp_1,
"TIMESTAMP_2" => $find_timestamp_2,
"LAST_LOGIN_1" => $find_last_login_1,
"LAST_LOGIN_2" => $find_last_login_2,
"ACTIVE" => $find_active,
"LOGIN" => ($find!='' && $find_type == "login"? $find: $find_login),
"NAME" => ($find!='' && $find_type == "name"? $find: $find_name),
"EMAIL" => ($find!='' && $find_type == "email"? $find: $find_email),
"KEYWORDS" => $find_keywords,
"GROUPS_ID" => $find_group_id
);
}
if(!$USER->CanDoOperation('view_all_users'))
{
$arFilter["CHECK_SUBORDINATE"] = CUser::GetSubordinateGroups();
if($USER->CanDoOperation('edit_own_profile'))
{
$arFilter["CHECK_SUBORDINATE_AND_OWN"] = $USER->GetID();
}
}
$rsData = CUser::GetList($oSort->getField(), $oSort->getOrder(), $arFilter, array(
"NAV_PARAMS"=> array("nPageSize"=>CAdminResult::GetNavSize($sTableID)),
));
$rsData = new CAdminResult($rsData, $sTableID);
$rsData->NavStart();
// ��������� ���������� ������
$lAdmin->NavText($rsData->GetNavPrint(GetMessage("PAGES")));
// ��������� ������
$lAdmin->AddHeaders(array(
array("id"=>"ID", "content"=>"ID", "sort"=>"id", "default"=>true),
array("id"=>"TIMESTAMP_X", "content"=>GetMessage('TIMESTAMP'), "sort"=>"timestamp_x", "default"=>true),
array("id"=>"ACTIVE", "content"=>GetMessage('ACTIVE'), "sort"=>"active", "default"=>true),
array("id"=>"LOGIN", "content"=>GetMessage("LOGIN"), "sort"=>"login", "default"=>true),
array("id"=>"NAME", "content"=>GetMessage("NAME"), "sort"=>"name", "default"=>true),
array("id"=>"LAST_NAME", "content"=>GetMessage("LAST_NAME"), "sort"=>"last_name", "default"=>true),
array("id"=>"EMAIL", "content"=>GetMessage('EMAIL'), "sort"=>"email", "default"=>true),
array("id"=>"LAST_LOGIN", "content"=>GetMessage("LAST_LOGIN"), "sort"=>"last_login", "default"=>true),
array("id"=>"DATE_REGISTER", "content"=>GetMessage("DATE_REGISTER"), "sort"=>"date_register"),
array("id"=>"PERSONAL_BIRTHDAY", "content"=>GetMessage("PERSONAL_BIRTHDAY"), "sort"=>"personal_birthday"),
array("id"=>"PERSONAL_PROFESSION", "content"=>GetMessage("PERSONAL_PROFESSION"), "sort"=>"personal_profession"),
array("id"=>"PERSONAL_WWW", "content"=>GetMessage("PERSONAL_WWW"), "sort"=>"personal_www"),
array("id"=>"PERSONAL_ICQ", "content"=>GetMessage("PERSONAL_ICQ"), "sort"=>"personal_icq"),
array("id"=>"PERSONAL_GENDER", "content"=>GetMessage("PERSONAL_GENDER"), "sort"=>"personal_gender"),
array("id"=>"PERSONAL_PHONE", "content"=>GetMessage("PERSONAL_PHONE"), "sort"=>"personal_phone"),
array("id"=>"PERSONAL_MOBILE", "content"=>GetMessage("PERSONAL_MOBILE"), "sort"=>"personal_mobile"),
array("id"=>"PERSONAL_CITY", "content"=>GetMessage("PERSONAL_CITY"), "sort"=>"personal_city"),
array("id"=>"PERSONAL_STREET", "content"=>GetMessage("PERSONAL_STREET"), "sort"=>"personal_street"),
array("id"=>"WORK_COMPANY", "content"=>GetMessage("WORK_COMPANY"), "sort"=>"work_company"),
array("id"=>"WORK_DEPARTMENT", "content"=>GetMessage("WORK_DEPARTMENT"), "sort"=>"work_department"),
array("id"=>"WORK_POSITION", "content"=>GetMessage("WORK_POSITION"), "sort"=>"work_position"),
array("id"=>"WORK_WWW", "content"=>GetMessage("WORK_WWW"), "sort"=>"work_www"),
array("id"=>"WORK_PHONE", "content"=>GetMessage("WORK_PHONE"), "sort"=>"work_phone"),
array("id"=>"WORK_CITY", "content"=>GetMessage("WORK_CITY"), "sort"=>"work_city"),
array("id"=>"XML_ID", "content"=>GetMessage("XML_ID"), "sort"=>"external_id"),
array("id"=>"EXTERNAL_AUTH_ID", "content"=>GetMessage("EXTERNAL_AUTH_ID")),
));
// ���������� ������
while($arRes = $rsData->GetNext())
{
$f_ID = $arRes['ID'];
$row =& $lAdmin->AddRow($f_ID, $arRes);
$row->AddViewField("ID", $f_ID);
$row->AddCheckField("ACTIVE", false);
$row->AddViewField("LOGIN", "<a href=\"javascript:SetValue('".$f_ID."');\" title=\"".GetMessage("MAIN_CHANGE")."\">".$arRes["LOGIN"]."</a>");
$row->AddViewField("NAME", $arRes["NAME"]);
$row->AddViewField("LAST_NAME", $arRes["LAST_NAME"]);
$row->AddViewField("EMAIL", TxtToHtml($arRes["EMAIL"]));
$row->AddViewField("PERSONAL_PROFESSION", $arRes["PERSONAL_PROFESSION"]);
$row->AddViewField("PERSONAL_WWW", TxtToHtml($arRes["PERSONAL_WWW"]));
$row->AddViewField("PERSONAL_ICQ", $arRes["PERSONAL_ICQ"]);
$row->AddViewField("PERSONAL_GENDER", $arRes["PERSONAL_GENDER"]);
$row->AddViewField("PERSONAL_PHONE", $arRes["PERSONAL_PHONE"]);
$row->AddViewField("PERSONAL_MOBILE", $arRes["PERSONAL_MOBILE"]);
$row->AddViewField("PERSONAL_CITY", $arRes["PERSONAL_CITY"]);
$row->AddViewField("PERSONAL_STREET", $arRes["PERSONAL_STREET"]);
$row->AddViewField("WORK_COMPANY", $arRes["WORK_COMPANY"]);
$row->AddViewField("WORK_DEPARTMENT", $arRes["WORK_DEPARTMENT"]);
$row->AddViewField("WORK_POSITION", $arRes["WORK_POSITION"]);
$row->AddViewField("WORK_WWW", TxtToHtml($arRes["WORK_WWW"]));
$row->AddViewField("WORK_PHONE", $arRes["WORK_PHONE"]);
$row->AddViewField("WORK_CITY", $arRes["WORK_CITY"]);
$row->AddViewField("XML_ID", $arRes["XML_ID"]);
$arActions = array();
$arActions[] = array(
"ICON"=>"",
"TEXT"=>GetMessage("MAIN_CHANGE"),
"DEFAULT"=>true,
"ACTION"=>"SetValue('".$f_ID."');"
);
$row->AddActions($arActions);
}
$lAdmin->AddAdminContextMenu(array());
// �������� �� ���� ����� ������ (� ����� ������, ������ ���� ������� �� �����)
$lAdmin->CheckListMode();
$APPLICATION->SetTitle(GetMessage("MAIN_PAGE_TITLE"));
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_popup_admin.php")
?>
<script type="text/javascript">
function SetValue(id)
{
<?if ($JSFUNC <> ''){?>
window.opener.SUV<?=$JSFUNC?>(id);
<?}else{?>
window.opener.document.<?echo $FN;?>["<?echo $FC;?>"].value=id;
if (window.opener.BX)
window.opener.BX.fireEvent(window.opener.document.<?echo $FN;?>["<?echo $FC;?>"], 'change');
window.close();
<?}?>
}
</script>
<form name="find_form" method="GET" action="<?echo $APPLICATION->GetCurPage()?>?">
<?
$oFilter = new CAdminFilter(
$sTableID."_filter",
array(
GetMessage('MAIN_FLT_USER_ID'),
GetMessage('MAIN_FLT_MOD_DATE'),
GetMessage('MAIN_FLT_AUTH_DATE'),
GetMessage('MAIN_FLT_ACTIVE'),
GetMessage('MAIN_FLT_LOGIN'),
GetMessage('MAIN_FLT_EMAIL'),
GetMessage('MAIN_FLT_FIO'),
GetMessage('MAIN_FLT_PROFILE_FIELDS'),
GetMessage('MAIN_FLT_USER_GROUP')
)
);
$oFilter->Begin();
?>
<tr>
<td><b><?=GetMessage("MAIN_FLT_SEARCH")?></b></td>
<td nowrap>
<input type="text" size="25" name="find" value="<?echo htmlspecialcharsbx($find)?>" title="<?=GetMessage("MAIN_FLT_SEARCH_TITLE")?>">
<select name="find_type">
<option value="login"<?if($find_type=="login") echo " selected"?>><?=GetMessage('MAIN_FLT_LOGIN')?></option>
<option value="email"<?if($find_type=="email") echo " selected"?>><?=GetMessage('MAIN_FLT_EMAIL')?></option>
<option value="name"<?if($find_type=="name") echo " selected"?>><?=GetMessage('MAIN_FLT_FIO')?></option>
</select>
</td>
</tr>
<tr>
<td><?echo GetMessage("MAIN_F_ID")?></td>
<td><input type="text" name="find_id" size="47" value="<?echo htmlspecialcharsbx($find_id)?>"><?=ShowFilterLogicHelp()?></td>
</tr>
<tr>
<td><?echo GetMessage("MAIN_F_TIMESTAMP").":"?></td>
<td><?echo CalendarPeriod("find_timestamp_1", htmlspecialcharsbx($find_timestamp_1), "find_timestamp_2", htmlspecialcharsbx($find_timestamp_2), "find_form","Y")?></td>
</tr>
<tr>
<td><?echo GetMessage("MAIN_F_LAST_LOGIN").":"?></td>
<td><?echo CalendarPeriod("find_last_login_1", htmlspecialcharsbx($find_last_login_1), "find_last_login_2", htmlspecialcharsbx($find_last_login_2), "find_form","Y")?></td>
</tr>
<tr>
<td><?echo GetMessage("F_ACTIVE")?></td>
<td><?
$arr = array("reference"=>array(GetMessage("MAIN_YES"), GetMessage("MAIN_NO")), "reference_id"=>array("Y","N"));
echo SelectBoxFromArray("find_active", $arr, htmlspecialcharsbx($find_active), GetMessage('MAIN_ALL'));
?>
</td>
</tr>
<tr>
<td><?echo GetMessage("F_LOGIN")?></td>
<td><input type="text" name="find_login" size="47" value="<?echo htmlspecialcharsbx($find_login)?>"><?=ShowFilterLogicHelp()?></td>
</tr>
<tr>
<td><?echo GetMessage("MAIN_F_EMAIL")?></td>
<td><input type="text" name="find_email" value="<?echo htmlspecialcharsbx($find_email)?>" size="47"><?=ShowFilterLogicHelp()?></td>
</tr>
<tr>
<td><?echo GetMessage("F_NAME")?></td>
<td><input type="text" name="find_name" value="<?echo htmlspecialcharsbx($find_name)?>" size="47"><?=ShowFilterLogicHelp()?></td>
</tr>
<tr>
<td><?echo GetMessage("MAIN_F_KEYWORDS")?></td>
<td><input type="text" name="find_keywords" value="<?echo htmlspecialcharsbx($find_keywords)?>" size="47"><?=ShowFilterLogicHelp()?></td>
</tr>
<tr valign="top">
<td><?echo GetMessage("F_GROUP")?><br><img src="/bitrix/images/main/mouse.gif" width="44" height="21" border="0" alt=""></td>
<td><?
$z = CGroup::GetDropDownList("AND ID!=2");
echo SelectBoxM("find_group_id[]", $z, $find_group_id, "", false, 10);
?></td>
</tr>
<input type="hidden" name="FN" value="<?echo htmlspecialcharsbx($FN)?>">
<input type="hidden" name="FC" value="<?echo htmlspecialcharsbx($FC)?>">
<input type="hidden" name="JSFUNC" value="<?echo htmlspecialcharsbx($JSFUNC)?>">
<?
$oFilter->Buttons(array("table_id"=>$sTableID, "url"=>$APPLICATION->GetCurPage(), "form"=>"find_form"));
$oFilter->End();
?>
</form>
<?
// ����� �� ����� ������
$lAdmin->DisplayList();
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/epilog_popup_admin.php");