本文整理汇总了PHP中H::hiddenField方法的典型用法代码示例。如果您正苦于以下问题:PHP H::hiddenField方法的具体用法?PHP H::hiddenField怎么用?PHP H::hiddenField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类H
的用法示例。
在下文中一共展示了H::hiddenField方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
?>
<div class="form">
<?php
$form = $this->beginWidget('bootstrap.widgets.TbActiveForm', array('id' => 'argroupon-create-form', 'enableAjaxValidation' => true, 'clientOptions' => array('validateOnSubmit' => true, 'validateOnChange' => false), 'htmlOptions' => array('enctype' => 'multipart/form-data')));
?>
<p class="note">带 <span class="required">*</span> 为必填项 .</p>
<?php
echo $form->errorSummary($model);
?>
<?php
$this->widget('bootstrap.widgets.TbTabs', array('type' => 'tabs', 'placement' => 'above', 'tabs' => array(array('label' => '基本信息', 'content' => $this->renderPartial('_form_base', array('model' => $model, 'form' => $form), true), 'active' => true), array('label' => '分类信息', 'content' => $this->renderPartial('_form_cate', array('model' => $model, 'form' => $form), true)), array('label' => '价格信息', 'content' => $this->renderPartial('_form_price', array('model' => $model, 'form' => $form), true)), array('label' => '数量信息', 'content' => $this->renderPartial('_form_number', array('model' => $model, 'form' => $form), true)), array('label' => '时间信息', 'content' => $this->renderPartial('_form_time', array('model' => $model, 'form' => $form), true)))));
?>
<?php
echo H::hiddenField('return_url', Yii::app()->request->urlReferrer);
?>
<div class="form-actions">
<?php
$this->widget('bootstrap.widgets.TbButton', array('buttonType' => 'submit', 'type' => 'primary', 'label' => $model->isNewRecord ? '创建' : '修改'));
?>
</div>
<?php
$this->endWidget();
?>
</div><!-- form -->