本文整理汇总了PHP中Quote::statusList方法的典型用法代码示例。如果您正苦于以下问题:PHP Quote::statusList方法的具体用法?PHP Quote::statusList怎么用?PHP Quote::statusList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Quote
的用法示例。
在下文中一共展示了Quote::statusList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
</tr>
<?php
$workflowList = Workflow::getList();
?>
<tr id="workflow-row">
<td class="label" width="20%"><?php
echo $model->getAttributeLabel('status');
?>
</td>
<td id="status" onclick="showField(this,true);">
<div class="detail-field"><?php
echo Yii::t('quotes', $model->status);
?>
</div>
<div class="detail-form"><?php
echo $form->dropDownList($model, 'status', Quote::statusList());
?>
</div>
</td>
<td class="label"><?php
echo Yii::t('workflow', 'Workflow');
?>
</td>
<td colspan="3" id="workflow">
<div class="detail-field" style="width:170px; text-align:center;margin-bottom:5px;" onclick="showField($('#workflow').get(),false);"><?php
echo $workflowList[$currentWorkflow];
?>
</div>
<div class="detail-form" style="width:170px; text-align:center;margin-bottom:5px;">
<?php
echo CHtml::dropDownList('workflowId', $currentWorkflow, $workflowList, array('ajax' => array('type' => 'GET', 'url' => CHtml::normalizeUrl(array('workflow/getWorkflow', 'modelId' => $model->id, 'type' => 'quotes')), 'update' => '#workflow-diagram')));
示例2: array
echo Yii::t('quotes', 'Status');
?>
</th>
</tr>
<tr>
<td><?php
echo $quote->createdBy;
?>
</td>
<td><?php
echo $quote->updatedBy;
?>
</td>
<td>
<?php
echo $form->dropDownList($quote, 'status', Quote::statusList());
?>
<?php
echo $form->error($quote, 'status');
?>
<span style="padding-left: 5px;">
<?php
echo Yii::t('quotes', $attributeLabel['locked']);
?>
<?php
echo $form->checkBox($quote, 'locked', array('id' => "quote-{$quote->id}-locked"));
?>
</span>
</td>
<td>