本文整理汇总了PHP中Subject::subjects方法的典型用法代码示例。如果您正苦于以下问题:PHP Subject::subjects方法的具体用法?PHP Subject::subjects怎么用?PHP Subject::subjects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Subject
的用法示例。
在下文中一共展示了Subject::subjects方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
/* @var $this SubjectTeacherController */
/* @var $model SubjectTeacher */
$this->breadcrumbs = array('Subject Teachers' => array('index'), 'Manage');
$this->menu = array(array('label' => 'List SubjectTeacher', 'url' => array('index')), array('label' => 'Create SubjectTeacher', 'url' => array('create')));
Yii::app()->clientScript->registerScript('search', "\n\$('.search-button').click(function(){\n\t\$('.search-form').toggle();\n\treturn false;\n});\n\$('.search-form form').submit(function(){\n\t\$('#subject-teacher-grid').yiiGridView('update', {\n\t\tdata: \$(this).serialize()\n\t});\n\treturn false;\n});\n");
?>
<h1>Manage Subject Teachers</h1>
<p>
You may optionally enter a comparison operator (<b><</b>, <b><=</b>, <b>></b>, <b>>=</b>, <b><></b>
or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
</p>
<?php
echo CHtml::link('Advanced Search', '#', array('class' => 'search-button'));
?>
<div class="search-form" style="display:none">
<?php
$this->renderPartial('_search', array('model' => $model));
?>
</div><!-- search-form -->
<?php
$this->widget('zii.widgets.grid.CGridView', array('id' => 'subject-teacher-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'columns' => array('id' => ['name' => 'id', 'htmlOptions' => ['width' => 30]], 'subject_id' => ['name' => 'subject_id', 'value' => '$data->subject->name', 'filter' => Subject::subjects()], 'teacher_id' => ['name' => 'teacher_id', 'value' => '$data->teacher->fio', 'filter' => Teacher::teachers()], array('class' => 'CButtonColumn'))));
示例2:
<div class="row">
<?php
echo $form->label($model, 'group_id');
?>
<?php
echo $form->dropDownList($model, 'group_id', Group::groups());
?>
</div>
<div class="row">
<?php
echo $form->label($model, 'subject_id');
?>
<?php
echo $form->dropDownList($model, 'subject_id', Subject::subjects());
?>
</div>
<div class="row">
<?php
echo $form->label($model, 'teacher_id');
?>
<?php
echo $form->dropDownList($model, 'teacher_id', Teacher::teachers());
?>
</div>
<div class="row">
<?php
echo $form->label($model, 'para');