當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Batch::items方法代碼示例

本文整理匯總了PHP中Batch::items方法的典型用法代碼示例。如果您正苦於以下問題:PHP Batch::items方法的具體用法?PHP Batch::items怎麽用?PHP Batch::items使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Batch的用法示例。


在下文中一共展示了Batch::items方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

echo $form->error($model, 'sub_id');
?>
	</div>

	<div class="row">
        <?php 
echo $form->labelEx($model, 'batch_id');
?>
        <?php 
//echo $form->textField($model,'batch_id');
?>
        <?php 
//echo $form->dropDownList($model,'batch_id', CHtml::listData(Batch::model()->findAll(), 'batch_id', 'batch_name'));
?>
        <?php 
echo $form->dropDownList($model, 'batch_id', Batch::items(), array('empty' => '---------------Select-------------', 'tabindex' => 7));
?>
<span class="status">&nbsp;</span>
        <?php 
echo $form->error($model, 'batch_id');
?>
    </div>
		
	<!--<div class="row">
		<?php 
echo $form->labelEx($model, 'timetable_id');
?>
		<?php 
echo $form->textField($model, 'timetable_id');
?>
		<?php 
開發者ID:sharmarakesh,項目名稱:EduSec2.0.0,代碼行數:31,代碼來源:update_form.php

示例2: array

}
?>
<span class="status">&nbsp;</span>
		<?php 
echo $form->error($model, 'student_transaction_division_id');
?>
	</div>

</div>
 <div class="row">
	<div class="row-left">
        <?php 
echo $form->labelEx($model, 'student_transaction_batch_id');
?>
        <?php 
echo $form->dropDownList($model, 'student_transaction_batch_id', Batch::items(), array('empty' => '-----------Select---------', 'tabindex' => 5));
?>
<span class="status">&nbsp;</span>
        <?php 
echo $form->error($model, 'student_transaction_batch_id');
?>
	</div>

	<div class="row-right">
        <?php 
echo $form->labelEx($model, 'student_transaction_shift_id');
?>
        <?php 
echo $form->dropDownList($model, 'student_transaction_shift_id', Shift::items(), array('empty' => '-----------Select---------', 'tabindex' => 6));
?>
<span class="status">&nbsp;</span>
開發者ID:sharmarakesh,項目名稱:edusec-college-management-system,代碼行數:31,代碼來源:_tab1.php


注:本文中的Batch::items方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。