本文整理汇总了PHP中ZurmoHtml::activeHiddenField方法的典型用法代码示例。如果您正苦于以下问题:PHP ZurmoHtml::activeHiddenField方法的具体用法?PHP ZurmoHtml::activeHiddenField怎么用?PHP ZurmoHtml::activeHiddenField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ZurmoHtml
的用法示例。
在下文中一共展示了ZurmoHtml::activeHiddenField方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
/**
* This function overrides the run method from CJuiDatePicker and fixes the jQuery issue for the Datepicker showing
* wrong language in the portlet views popup.
*/
public function run()
{
list($name, $id) = $this->resolveNameID();
if (isset($this->htmlOptions['id'])) {
$id = $this->htmlOptions['id'];
} else {
$this->htmlOptions['id'] = $id;
}
if (isset($this->htmlOptions['name'])) {
$name = $this->htmlOptions['name'];
} else {
$this->htmlOptions['name'] = $name;
}
if (!isset($this->options['currentText'])) {
$this->options['currentText'] = ZurmoHtml::wrapLabel(Zurmo::t('Core', 'Now'));
}
if (!isset($this->options['closeText'])) {
$this->options['closeText'] = ZurmoHtml::wrapLabel(Zurmo::t('Core', 'Done'));
}
if ($this->flat === false) {
if ($this->hasModel()) {
echo ZurmoHtml::activeTextField($this->model, $this->attribute, $this->htmlOptions);
} else {
echo ZurmoHtml::textField($name, $this->value, $this->htmlOptions);
}
} else {
if ($this->hasModel()) {
echo ZurmoHtml::activeHiddenField($this->model, $this->attribute, $this->htmlOptions);
$attribute = $this->attribute;
$this->options['defaultDate'] = $this->model->{$attribute};
} else {
echo ZurmoHtml::hiddenField($name, $this->value, $this->htmlOptions);
$this->options['defaultDate'] = $this->value;
}
if (!isset($this->options['onSelect'])) {
$this->options['onSelect'] = "js:function( selectedDate ) { jQuery('#{$id}').val(selectedDate);}";
// Not Coding Standard
}
$id = $this->htmlOptions['id'] = $this->htmlOptions['id'] . '_container';
$this->htmlOptions['name'] = $this->htmlOptions['name'] . '_container';
echo ZurmoHtml::tag('div', $this->htmlOptions, '');
}
$options = CJavaScript::encode($this->options);
$js = "jQuery('#{$id}').datepicker({$options});";
if ($this->language != '' && $this->language != 'en') {
$this->registerScriptFile($this->i18nScriptFile);
$js = "jQuery(function(){jQuery('#{$id}').datepicker(jQuery.extend({showMonthAfterYear:false}, jQuery.datepicker.regional['{$this->language}'], {$options}));})";
}
$cs = Yii::app()->getClientScript();
if (isset($this->defaultOptions)) {
$this->registerScriptFile($this->i18nScriptFile);
$cs->registerScript(__CLASS__, $this->defaultOptions !== null ? 'jQuery.datepicker.setDefaults(' . CJavaScript::encode($this->defaultOptions) . ');' : '');
}
$cs->registerScript(__CLASS__ . '#' . $id, $js);
}
示例2: renderMashableInboxFormLayout
protected function renderMashableInboxFormLayout($form)
{
assert('$form instanceof ZurmoActiveForm');
$content = null;
$model = $this->mashableInboxForm;
$content = $this->renderSearchView($model, $form);
$element = new MashableInboxOptionsByModelRadioElement($model, 'optionForModel', $form, array(), $this->getArrayForByModelRadioElement());
$element->editableTemplate = '<div id="MashableInboxForm_optionForModel_area">{content}</div>';
$content .= '<div class="filters-bar">';
$content .= $element->render();
$element = new MashableInboxStatusRadioElement($model, 'filteredBy', $form);
$element->editableTemplate = '<div id="MashableInboxForm_filteredBy_area">{content}</div>';
$content .= $element->render();
$content .= '</div>';
$content .= ZurmoHtml::activeHiddenField($model, 'selectedIds');
$content .= ZurmoHtml::activeHiddenField($model, 'massAction');
return $content;
}