本文整理汇总了PHP中SelectBoxM函数的典型用法代码示例。如果您正苦于以下问题:PHP SelectBoxM函数的具体用法?PHP SelectBoxM怎么用?PHP SelectBoxM使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了SelectBoxM函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ShowFilterLogicHelp
echo 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"><?php
echo ShowFilterLogicHelp();
?>
</td>
</tr>
<tr valign="top">
<td><?echo GetMessage("F_GROUP")?><br><img src="/freetrix/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"]."/freetrix/modules/main/include/epilog_popup_admin.php");
?>
示例2: htmlspecialcharsbx
echo htmlspecialcharsbx($counters);
?>
</textarea></td>
</tr>
<tr>
<td width="30%" valign="top"><?php
echo GetMessage('SEO_OPT_SEARCHERS');
?>
: </td>
<td width="70%">
<?php
if (CModule::IncludeModule('statistic')) {
if (count($arCurrentSearchers) > 0) {
echo GetMessage('SEO_OPT_SEARCHERS_SELECTED'), ": <b>", implode(', ', $arCurrentSearchers) . '</b><br /><br />';
}
echo SelectBoxM("arSearchersList[]", CSearcher::GetDropdownList(), $arSearchersList, "", false, 20);
} else {
CAdminMessage::ShowMessage(GetMessage('SEO_OPT_ERR_NO_STATS'));
}
?>
</td>
</tr>
<?php
$tabControl->BeginNextTab();
require_once $_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/main/admin/group_rights2.php";
$tabControl->Buttons();
?>
<script language="JavaScript">
function confirmRestoreDefaults()
{
return confirm('<?php
示例3: GetMessage
:</td>
<td align="left">
<?php
echo CCurrency::SelectBox("filter_currency", $filter_currency, GetMessage("SB_ALL"), True, "", "");
?>
</td>
</tr>
<tr>
<td><?php
echo GetMessage("SB_USER_GROUP_ID");
?>
:</td>
<td>
<?php
$z = CGroup::GetDropDownList("AND ID!=2");
echo SelectBoxM("filter_group_id[]", $z, $filter_group_id, "", false, 5);
?>
</td>
</tr>
<tr>
<td><?php
echo GetMessage("SB_LID");
?>
:</td>
<td>
<select name="filter_lang[]" multiple size="5">
<option value=""<?php
if (empty($filter_lang)) {
echo " selected";
}
?>
示例4: GetMessage
<td class="adm-detail-valign-top"><?php
echo GetMessage('FLOW_MOVE_RIGHTS');
?>
<br><img src="/bitrix/images/workflow/mouse.gif" width="44" height="21" border=0 alt=""></td>
<td><?php
echo SelectBoxM("arPERMISSION_M[]", CGroup::GetDropDownList(""), $arPERMISSION_M, "", true, 8);
?>
</td>
</tr>
<tr>
<td class="adm-detail-valign-top"><?php
echo GetMessage('FLOW_EDIT_RIGHTS');
?>
<br><img src="/bitrix/images/workflow/mouse.gif" width="44" height="21" border=0 alt=""></td>
<td><?php
echo SelectBoxM("arPERMISSION_E[]", CGroup::GetDropDownList(""), $arPERMISSION_E, "", true, 8);
?>
</td>
</tr>
<tr>
<td><label for="notify"><?php
echo GetMessage("FLOW_NOTIFY");
?>
</label></td>
<td><?php
echo InputType("checkbox", "NOTIFY", "Y", $str_NOTIFY, false, "", 'id="notify"');
?>
</td>
</tr>
<?php
$tabControl->Buttons(array("disabled" => $WORKFLOW_RIGHT < "W", "back_url" => "workflow_status_list.php?lang=" . LANGUAGE_ID));