本文整理匯總了PHP中country::items方法的典型用法代碼示例。如果您正苦於以下問題:PHP country::items方法的具體用法?PHP country::items怎麽用?PHP country::items使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類country
的用法示例。
在下文中一共展示了country::items方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
<div id="addressGrid">
<?php
$this->widget('TradeGrid', array('dataProvider' => $model->search(), 'filter' => $model, 'htmlOptions' => array('class' => 'hor-scroll'), 'columns' => array(array('header' => '編號', 'name' => 'address_ID', 'type' => 'raw'), array('header' => '姓', 'name' => 'address_lastname', 'type' => 'raw'), array('header' => '名', 'name' => 'address_firstname', 'type' => 'raw'), array('header' => '國家', 'name' => 'address_country_ID', 'value' => 'country::item($data->address_country_ID)', 'filter' => country::items(), 'type' => 'raw'), array('header' => '州/省', 'name' => 'address_state_ID', 'value' => 'state::item($data->address_state_ID)', 'filter' => state::items(), 'type' => 'raw'), array('header' => '城市', 'name' => 'address_city', 'type' => 'raw'), array('header' => '激活', 'name' => 'address_active', 'value' => 'lookup::item("YesAndNo",$data->address_active)', 'filter' => lookup::items('YesAndNo'), 'type' => 'raw'), array('header' => '郵編', 'name' => 'address_postcode', 'type' => 'raw'), array('class' => 'CButtonColumn', 'template' => '{update} {delete}'))));
?>
</div>
示例2: array
</tr>
<tr>
<td class="label"><label for="active">是否激活 <span class="required">*</span></label></td>
<td class="value">
<?php
echo $form->dropDownList($model, 'address_active', lookup::items('YesAndNo'), array('class' => 'required-entry required-entry input-select', 'id' => 'active', 'name' => 'address[address_active]'));
?>
</td>
<td class="scope-label"><span class="nobr"></span></td>
<td><small> </small></td>
</tr>
<tr>
<td class="label"><label for="country">國家 <span class="required">*</span></label></td>
<td class="value">
<?php
echo $form->dropDownList($model, 'address_country_ID', country::items(), array('class' => 'required-entry required-entry input-select', 'id' => 'country', 'name' => 'address[address_country_ID]'));
?>
</td>
<td class="scope-label"><span class="nobr"></span></td>
<td><small> </small></td>
</tr>
<tr>
<td class="label"><label for="state">州/省 <span class="required">*</span></label></td>
<td class="value">
<?php
echo $form->dropDownList($model, 'address_state_ID', state::items($model->address_country_ID), array('class' => 'required-entry required-entry input-select', 'id' => 'state', 'name' => 'address[address_state_ID]', 'prompt' => '-----------------------------------------------------------------'));
?>
</td>
<td class="scope-label"><span class="nobr"></span></td>
<td><small> </small></td>
</tr>
示例3: array
</td>
<td><small></small></td>
</tr>
<tr>
<td class="label"><label for="zone">區域 <span class="required">*</span></label></td>
<td class="value">
<?php
echo $form->dropDownList($model, 'zone_ID', zone::items(), array('class' => 'required-entry required-entry input-select', 'id' => 'zone', 'name' => 'state[zone_ID]'));
?>
</td>
<td class="scope-label"><span class="nobr"></span></td>
<td><small> </small></td>
</tr>
<tr>
<td class="label"><label for="country">國家 <span class="required">*</span></label></td>
<td class="value">
<?php
echo $form->dropDownList($model, 'country_ID', country::items(true), array('class' => 'required-entry required-entry input-select', 'id' => 'country', 'name' => 'state[country_ID]'));
?>
</td>
<td class="scope-label"><span class="nobr"></span></td>
<td><small> </small></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php
$this->endWidget();