本文整理汇总了PHP中CAdminForm::GetCustomLabelHTML方法的典型用法代码示例。如果您正苦于以下问题:PHP CAdminForm::GetCustomLabelHTML方法的具体用法?PHP CAdminForm::GetCustomLabelHTML怎么用?PHP CAdminForm::GetCustomLabelHTML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CAdminForm
的用法示例。
在下文中一共展示了CAdminForm::GetCustomLabelHTML方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetMessage
">
<?php
$tabControl->EndEpilogContent();
$tabControl->Begin();
$tabControl->BeginNextFormTab();
?>
<!-- ID -->
<?php
$tabControl->BeginCustomField("ID", "ID", false);
?>
<?php
if ($ID > 0) {
?>
<tr>
<td><?php
echo $tabControl->GetCustomLabelHTML();
?>
:</td>
<td><?php
echo $str_ID;
?>
</td>
</tr>
<?php
}
$tabControl->EndCustomField("ID");
?>
<!-- Timestamp_X -->
<?php
$tabControl->BeginCustomField("TIMESTAMP_X", GetMessage("LEARNING_LAST_UPDATE"), false);
?>
示例2: bitrix_sessid_post
<input type="hidden" name="return_url" value="<?php
echo htmlspecialcharsbx($returnUrl);
?>
"><?php
}
echo bitrix_sessid_post();
$control->EndEpilogContent();
$control->Begin(array('FORM_ACTION' => 'sale_discount_coupon_edit.php?lang=' . LANGUAGE_ID));
$control->BeginNextFormTab();
if ($multiCoupons) {
$control->AddEditField($prefix . 'COUNT', Loc::getMessage('BX_SALE_DISCOUNT_COUPON_COUNT'), true, array(), $coupon['COUNT'] > 0 ? $coupon['COUNT'] : '');
$control->BeginCustomField($prefix . 'PERIOD', Loc::getMessage('BX_SALE_DISCOUNT_COUPON_FIELD_PERIOD'), false);
?>
<tr id="tr_COUPON_PERIOD">
<td width="40%"><?php
echo $control->GetCustomLabelHTML();
?>
</td>
<td width="60%"><?php
$periodValue = '';
$activeFrom = $coupon['COUPON']['ACTIVE_FROM'] instanceof Main\Type\DateTime ? $coupon['COUPON']['ACTIVE_FROM']->toString() : '';
$activeTo = $coupon['COUPON']['ACTIVE_TO'] instanceof Main\Type\DateTime ? $coupon['COUPON']['ACTIVE_TO']->toString() : '';
if ($activeFrom != '' || $activeTo != '') {
$periodValue = CAdminCalendar::PERIOD_INTERVAL;
}
$calendar = new CAdminCalendar();
echo $calendar->CalendarPeriodCustom($prefix . 'ACTIVE_FROM', $prefix . 'ACTIVE_TO', $activeFrom, $activeTo, true, 19, true, array(CAdminCalendar::PERIOD_EMPTY => Loc::getMessage('BX_SALE_DISCOUNT_COUPON_PERIOD_EMPTY'), CAdminCalendar::PERIOD_INTERVAL => Loc::getMessage('BX_SALE_DISCOUNT_COUPON_PERIOD_INTERVAL')), $periodValue);
unset($calendar, $activeTo, $activeFrom, $periodValue);
?>
</td>
</tr><?php
示例3: GetMessage
?>
<input type="hidden" name="lang" value="<? echo LANGUAGE_ID; ?>">
<input type="hidden" name="ID" value="<? echo $ID; ?>">
<input type="hidden" name="save_order_data" value="Y">
<?
$tabControl->EndEpilogContent();
$tabControl->Begin();
$tabControl->BeginNextFormTab();
$tabControl->AddSection("order_id", GetMessage("P_ORDER_ID"));
$tabControl->BeginCustomField("ORDER_ACCOUNT_NUMBER", GetMessage("SOD_ORDER_ACCOUNT_NUMBER"));
?>
<tr>
<td width="40%"><?echo $tabControl->GetCustomLabelHTML()?>:</td>
<td width="60%"><?echo $arOrder["ACCOUNT_NUMBER"]?></td>
</tr>
<?
$tabControl->EndCustomField("ORDER_ACCOUNT_NUMBER", '');
$tabControl->BeginCustomField("ORDER_DATE_CREATE", GetMessage("SOD_ORDER_DATE_CREATE"));
?>
<tr>
<td width="40%"><?echo $tabControl->GetCustomLabelHTML()?>:</td>
<td width="60%"><?echo $arOrder["DATE_INSERT"]?></td>
</tr>
<?
$tabControl->EndCustomField("ORDER_DATE_CREATE", '');
$tabControl->BeginCustomField("DATE_UPDATE", GetMessage("SOD_DATE_UPDATE"));
?>
示例4: GetMessage
}
$tabControl->EndEpilogContent();
$tabControl->Begin(array(
"FORM_ACTION" => '/bitrix/admin/cat_discount_coupon_edit.php?lang='.LANGUAGE_ID,
));
$tabControl->BeginNextFormTab();
if ($ID > 0 && !$boolCopy)
$tabControl->AddViewField('ID','ID:',$ID,false);
if (!empty($arDiscountList))
{
if (0 < $ID)
{
$tabControl->BeginCustomField("DISCOUNT_ID", GetMessage('DSC_CPN_DISC').':', false);
?><tr id="tr_DISCOUNT_ID" class="adm-detail-required-field">
<td width="40%"><? echo $tabControl->GetCustomLabelHTML(); ?></td>
<td width="60%"><?
if (isset($arDiscountList[$arCoupon['DISCOUNT_ID']]))
{
echo htmlspecialcharsex($arDiscountList[$arCoupon['DISCOUNT_ID']]);
}
?></td>
</tr><?
$tabControl->EndCustomField('DISCOUNT_ID');
}
else
{
$tabControl->AddDropDownField("DISCOUNT_ID", GetMessage('DSC_CPN_DISC').':', true, $arDiscountList, $arCoupon['DISCOUNT_ID']);
}
}
else
示例5: array
$tabControl->BeginNextFormTab();
if($ID > 0 && !$bCopy)
{
$p = CIblockElement::GetByID($ID);
$pr = $p->ExtractFields("prn_");
}
else
{
$pr = array();
}
$tabControl->AddCheckBoxField("ACTIVE", GetMessage("IBLOCK_FIELD_ACTIVE").":", false, array("Y","N"), $str_ACTIVE=="Y");
$tabControl->BeginCustomField("ACTIVE_FROM", GetMessage("IBLOCK_FIELD_ACTIVE_PERIOD_FROM"), $arIBlock["FIELDS"]["ACTIVE_FROM"]["IS_REQUIRED"] === "Y");
?>
<tr id="tr_ACTIVE_FROM">
<td><?echo $tabControl->GetCustomLabelHTML()?>:</td>
<td><?echo CAdminCalendar::CalendarDate("ACTIVE_FROM", $str_ACTIVE_FROM, 19, true)?></td>
</tr>
<?
$tabControl->EndCustomField("ACTIVE_FROM", '<input type="hidden" id="ACTIVE_FROM" name="ACTIVE_FROM" value="'.$str_ACTIVE_FROM.'">');
$tabControl->BeginCustomField("ACTIVE_TO", GetMessage("IBLOCK_FIELD_ACTIVE_PERIOD_TO"), $arIBlock["FIELDS"]["ACTIVE_TO"]["IS_REQUIRED"] === "Y");
?>
<tr id="tr_ACTIVE_TO">
<td><?echo $tabControl->GetCustomLabelHTML()?>:</td>
<td><?echo CAdminCalendar::CalendarDate("ACTIVE_TO", $str_ACTIVE_TO, 19, true)?></td>
</tr>
<?
$tabControl->EndCustomField("ACTIVE_TO", '<input type="hidden" id="ACTIVE_TO" name="ACTIVE_TO" value="'.$str_ACTIVE_TO.'">');
if($arTranslit["TRANSLITERATION"] == "Y")
示例6: bitrix_sessid_post
if (!empty($returnUrl))
{
?><input type="hidden" name="return_url" value="<? echo htmlspecialcharsbx($returnUrl); ?>"><?
}
echo bitrix_sessid_post();
$control->EndEpilogContent();
$control->Begin(array(
'FORM_ACTION' => 'sale_discount_coupon_edit.php?lang='.LANGUAGE_ID
));
$control->BeginNextFormTab();
if ($multiCoupons)
{
$control->AddEditField($prefix.'COUNT', Loc::getMessage('BX_SALE_DISCOUNT_COUPON_COUNT'), true, array(), ($coupon['COUNT'] > 0 ? $coupon['COUNT'] : ''));
$control->BeginCustomField($prefix.'PERIOD', Loc::getMessage('BX_SALE_DISCOUNT_COUPON_FIELD_PERIOD'), false);
?><tr id="tr_COUPON_PERIOD">
<td width="40%"><? echo $control->GetCustomLabelHTML(); ?></td>
<td width="60%"><?
$periodValue = '';
$activeFrom = ($coupon['COUPON']['ACTIVE_FROM'] instanceof Type\DateTime ? $coupon['COUPON']['ACTIVE_FROM']->toString() : '');
$activeTo = ($coupon['COUPON']['ACTIVE_TO'] instanceof Type\DateTime ? $coupon['COUPON']['ACTIVE_TO']->toString() : '');
if ($activeFrom != '' || $activeTo != '')
$periodValue = CAdminCalendar::PERIOD_INTERVAL;
$calendar = new CAdminCalendar;
echo $calendar->CalendarPeriodCustom(
$prefix.'ACTIVE_FROM', $prefix.'ACTIVE_TO',
$activeFrom, $activeTo,
true, 19, true,
array(
CAdminCalendar::PERIOD_EMPTY => Loc::getMessage('BX_SALE_DISCOUNT_COUPON_PERIOD_EMPTY'),
CAdminCalendar::PERIOD_INTERVAL => Loc::getMessage('BX_SALE_DISCOUNT_COUPON_PERIOD_INTERVAL')
示例7: GetMessage
} else {
$bContentReadOnly = !$oAccess->IsBaseAccess(CLearnAccess::OP_LESSON_CREATE);
}
$tabControl->Begin();
$tabControl->BeginNextFormTab();
?>
<!-- ID -->
<?php
$tabControl->BeginCustomField("LESSON_ID", "ID", false);
?>
<?php
if ($LESSON_ID > 0) {
?>
<tr>
<td><?php
echo $tabControl->GetCustomLabelHTML();
?>
:</td>
<td><?php
echo $str_LESSON_ID;
?>
</td>
</tr>
<?php
}
$tabControl->EndCustomField("LESSON_ID");
?>
<!-- Timestamp_X -->
<?php
$tabControl->BeginCustomField("TIMESTAMP_X", GetMessage("LEARNING_LAST_UPDATE"), false);
示例8: GetMessage
?><input type="hidden" name="action" value="copy"><?
}
$tabControl->EndEpilogContent();
$tabControl->Begin(array(
"FORM_ACTION" => '/bitrix/admin/cat_discount_edit.php?lang='.urlencode(LANGUAGE_ID),
));
$tabControl->BeginNextFormTab();
if ($ID > 0 && !$boolCopy)
$tabControl->AddViewField('ID','ID:',$ID,false);
$tabControl->AddCheckBoxField("ACTIVE", GetMessage("DSC_ACTIVE").":", false, "Y", $arDiscount['ACTIVE'] == "Y");
$tabControl->AddEditField("NAME", GetMessage("DSC_NAME").":", true, array("size" => 50, "maxlength" => 255), htmlspecialcharsbx($arDiscount['NAME']));
$tabControl->AddDropDownField("SITE_ID", GetMessage('DSC_SITE').':', true, $arSiteList, $arDiscount['SITE_ID']);
$tabControl->BeginCustomField("PERIOD", GetMessage('DSC_PERIOD').":",false);
?><tr id="tr_PERIOD">
<td width="40%"><? echo $tabControl->GetCustomLabelHTML(); ?></td>
<td width="60%"><?
global $ACTIVE_FROM_FILTER_PERIOD;
$ACTIVE_FROM_FILTER_PERIOD = "";
if ('' != $arDiscount['ACTIVE_FROM'] || '' != $arDiscount['ACTIVE_TO'])
$ACTIVE_FROM_FILTER_PERIOD = CAdminCalendar::PERIOD_INTERVAL;
echo CAdminCalendar::CalendarPeriodCustom("ACTIVE_FROM", "ACTIVE_TO", $arDiscount['ACTIVE_FROM'], $arDiscount['ACTIVE_TO'], true, 19, true, array(
CAdminCalendar::PERIOD_EMPTY => GetMessage('BT_CAT_DISCOUNT_EDIT_CALENDARE_PERIOD_EMPTY'),
CAdminCalendar::PERIOD_INTERVAL => GetMessage('BT_CAT_DISCOUNT_EDIT_CALENDARE_PERIOD_INTERVAL')
));
?></td>
</tr><?
$tabControl->EndCustomField("PERIOD",
'<input type="hidden" name="ACTIVE_FROM" value="'.htmlspecialcharsbx($arDiscount['ACTIVE_FROM']).'">'.
'<input type="hidden" name="ACTIVE_TO" value="'.htmlspecialcharsbx($arDiscount['ACTIVE_FROM']).'">'
示例9: bitrix_sessid_post
?><input type="hidden" name="action" value="copy"><?
}
echo bitrix_sessid_post();
$control->EndEpilogContent();
$control->Begin(array(
"FORM_ACTION" => '/bitrix/admin/sale_discount_edit.php?lang='.LANGUAGE_ID,
));
$control->BeginNextFormTab();
if ($discountID > 0 && !$copy)
$control->AddViewField('ID','ID:',$discountID,false);
$control->AddCheckBoxField("ACTIVE", GetMessage("SDEN_ACTIVE").":", false, "Y", $arDiscount['ACTIVE'] == "Y");
$control->AddDropDownField("LID", GetMessage('SDEN_SITE').':', true, $arSiteList, $arDiscount['LID']);
$control->AddEditField("NAME", GetMessage("BT_SALE_DISCOUNT_EDIT_FIELDS_NAME").":", false, array("size" => 50, "maxlength" => 255), htmlspecialcharsbx($arDiscount['NAME']));
$control->BeginCustomField("PERIOD", GetMessage('SDEN_PERIOD').":",false);
?><tr id="tr_PERIOD">
<td width="40%"><? echo $control->GetCustomLabelHTML(); ?></td>
<td width="60%"><?
$periodValue = '';
if ('' != $arDiscount['ACTIVE_FROM'] || '' != $arDiscount['ACTIVE_TO'])
$periodValue = CAdminCalendar::PERIOD_INTERVAL;
echo CAdminCalendar::CalendarPeriodCustom(
'ACTIVE_FROM',
'ACTIVE_TO',
$arDiscount['ACTIVE_FROM'],
$arDiscount['ACTIVE_TO'],
true,
19,
true,
array(
CAdminCalendar::PERIOD_EMPTY => GetMessage('BT_SALE_DISCOUNT_EDIT_CALENDARE_PERIOD_EMPTY'),
示例10: intval
"find_section_section" => intval($find_section_section)
);
if ($bAutocomplete)
{
$arEditLinkParams['lookup'] = $strLookup;
}
$tabControl->Begin(array(
"FORM_ACTION" => "/bitrix/admin/".CIBlock::GetAdminSectionEditLink($IBLOCK_ID, null, $arEditLinkParams),
));
$tabControl->BeginNextFormTab();
?>
<?$tabControl->BeginCustomField("ID", "ID:");?>
<?if($ID>0):?>
<tr>
<td width="40%"><?echo $tabControl->GetCustomLabelHTML()?></td>
<td width="60%"><?echo $str_ID?></td>
</tr>
<?endif;?>
<?$tabControl->EndCustomField("ID", '');?>
<?$tabControl->BeginCustomField("DATE_CREATE", GetMessage("IBSEC_E_CREATED"));?>
<?if($ID>0):?>
<?if(strlen($str_DATE_CREATE) > 0):?>
<tr>
<td width="40%"><?echo $tabControl->GetCustomLabelHTML()?></td>
<td width="60%"><?echo $str_DATE_CREATE?><?
if(intval($str_CREATED_BY)>0):
?> [<a href="user_edit.php?lang=<?php
echo LANGUAGE_ID;
?>
示例11: GetMessage
$tabControl->Begin(array(
"FORM_ACTION" => $APPLICATION->GetCurPage()."?ID=".intval($ID)."&lang=".LANG,
"FORM_ATTRIBUTES" => ($ID <= 0 && $limitUsersCount > 0 && $limitUsersCount <= $users_cnt? 'onsubmit="alert(\''.GetMessage("USER_EDIT_WARNING_MAX").'\')"':''),
));
$tabControl->BeginNextFormTab();
$tabControl->AddViewField("LAST_UPDATE", GetMessage('LAST_UPDATE'), ($ID>0 && $COPY_ID<=0? $str_TIMESTAMP_X:''));
$tabControl->AddViewField("LAST_LOGIN", GetMessage('LAST_LOGIN'), ($ID>0 && $COPY_ID<=0? $str_LAST_LOGIN:''));
if(($ID!='1' || $COPY_ID>0) && ($USER->CanDoOperation('view_all_users') || $USER->CanDoOperation('view_own_profile'))):
$tabControl->BeginCustomField("ACTIVE", GetMessage('ACTIVE'));
?>
<tr>
<td><?echo $tabControl->GetCustomLabelHTML()?></td>
<td>
<?if($canSelfEdit):?>
<input type="checkbox" name="ACTIVE" value="Y"<?if($str_ACTIVE=="Y") echo " checked"?>>
<?else:?>
<input type="checkbox" <?if($str_ACTIVE=="Y") echo " checked"?> disabled>
<input type="hidden" name="ACTIVE" value="<?php
echo $str_ACTIVE;
?>
">
<?endif;?>
</tr>
<?
$tabControl->EndCustomField("ACTIVE", '<input type="hidden" name="ACTIVE" value="'.$str_ACTIVE.'">');
endif;
示例12: GetMessage
$tabControl->AddCheckBoxField("ACTIVE", GetMessage("IBLOCK_FIELD_ACTIVE").":", false, "Y", $str_ACTIVE=="Y");
$tabControl->AddEditField("NAME", "URL:", true, array("size" => 50, "maxlength" => 255), $str_NAME);
$tabControl->AddEditField("SORT", GetMessage("IBLOCK_FIELD_SORT").":", $arIBlock["FIELDS"]["SORT"]["IS_REQUIRED"] === "Y", array("size" => 7, "maxlength" => 10), $str_SORT);
if(count($PROP)>0):
$tabControl->AddSection("IBLOCK_ELEMENT_PROP_VALUE", GetMessage("kaycom.oneplaceseo_PROPS"));
foreach($PROP as $prop_code=>$prop_fields):
$prop_values = $prop_fields["VALUE"];
$tabControl->BeginCustomField("PROPERTY_".$prop_fields["ID"], $prop_fields["NAME"], $prop_fields["IS_REQUIRED"]==="Y");
?>
<tr id="tr_PROPERTY_<?echo $prop_fields["ID"];?>">
<td class="adm-detail-valign-top"><?if($prop_fields["HINT"]!=""):
?><span id="hint_<?echo $prop_fields["ID"];?>"></span><script>BX.hint_replace(BX('hint_<?echo $prop_fields["ID"];?>'), '<?echo CUtil::JSEscape($prop_fields["HINT"])?>');</script> <?
endif;?><?echo $tabControl->GetCustomLabelHTML();?>:</td>
<td><?_ShowPropertyField('PROP['.$prop_fields["ID"].']', $prop_fields, $prop_fields["VALUE"], (($historyId <= 0) && (!$bVarsFromForm) && ($ID<=0)), $bVarsFromForm, 50000, $tabControl->GetFormName(), $bCopy);?></td>
</tr>
<?
$hidden = "";
if(!is_array($prop_fields["~VALUE"]))
$values = Array();
else
$values = $prop_fields["~VALUE"];
$start = 1;
foreach($values as $key=>$val)
{
if($bCopy)
{
$key = "n".$start;
$start++;