コード例 #1
0
ファイル: _filter.php プロジェクト: hikaram/utitheme
							<?php 
echo CHtml::dropDownList('currency__id', array_key_exists('currency__id', $filter) ? $filter['currency__id'] : (string) FALSE, Products::gridCurrencyItems(TRUE), ['class' => 'input-inline input-large form-control']);
?>
						</div>					
					</div>
				</div>

				<div class="row">
					<div class="col-md-6">
						<h4 class="form-section"> <?php 
echo Yii::t('app', 'Статус');
?>
</h4>
						<div class="form-group" style="margin-left: 0; margin-right: 0;">
							<?php 
echo CHtml::dropDownList('status', array_key_exists('status', $filter) ? $filter['status'] : (string) FALSE, Products::gridStatusItems(TRUE), ['class' => 'input-inline input-large form-control']);
?>
						</div>
					</div>
					<?php 
if (!empty($specialStatuses)) {
    ?>
						<div class="col-md-6">
							<h4 class="form-section"> <?php 
    echo Yii::t('app', 'Особый статус');
    ?>
</h4>
							<div class="form-group" style="margin-left: 0; margin-right: 0;">
								<?php 
    echo CHtml::dropDownList('product_special_statuses__id', array_key_exists('product_special_statuses__id', $filter) ? $filter['product_special_statuses__id'] : (string) FALSE, ProductSpecialStatuses::getListForSelector(), ['class' => 'input-inline input-large form-control']);
    ?>
コード例 #2
0
ファイル: form_main.php プロジェクト: hikaram/utitheme
					<span class="help-block text-danger"><?php 
echo $form->error($model, 'available');
?>
</span>
				</div>
			</div>
			<?php 
if ($model->is_allowed_show_at_home) {
    ?>
				<div class="form-group" style="margin-top: 20px;">
					<?php 
    echo $form->labelEx($model, 'show_at_home', array('class' => 'col-md-2 control-label'));
    ?>
					<div class="col-md-10">
						<?php 
    echo $form->checkBox($model, 'show_at_home', Products::gridStatusItems(), array('class' => 'form-control'));
    ?>
						<span class="help-block text-danger"><?php 
    echo $form->error($model, 'show_at_home');
    ?>
</span>
					</div>
				</div>
			 <?php 
}
?>
			 <div class="form-group" style="margin-top: 20px;">
				<?php 
echo $form->labelEx($model, 'currency__id', array('class' => 'col-md-2 control-label'));
?>
				<div class="col-md-10">
コード例 #3
0
ファイル: _grid.php プロジェクト: hikaram/utitheme
<?php

$this->widget('zii.widgets.grid.CGridView', array('id' => 'products-grid', 'dataProvider' => $model->search(), 'filter' => $model, 'ajaxUpdate' => true, 'ajaxUrl' => Yii::app()->createUrl('/admin/catalog/products/index'), 'pager' => array('class' => 'CLinkPager', 'header' => '', 'maxButtonCount' => 10, 'htmlOptions' => array('class' => 'pagination')), 'htmlOptions' => array('class' => 'table table-hover'), 'columns' => array(array('name' => 'id', 'value' => '$data->id'), 'article', array('name' => 'productName', 'value' => '$data->lang->name'), array('name' => 'currency__id', 'value' => 'Products::gridCurrencyItem($data->currency__id)', 'filter' => Products::gridCurrencyItems()), 'price', 'points', array('name' => 'status', 'value' => 'Products::gridStatusItem($data->status)', 'filter' => Products::gridStatusItems()), array('name' => 'available', 'value' => 'Products::gridAvailableItem($data->available)', 'filter' => Products::gridAvailableItems()), array('header' => 'Операции', 'class' => 'CButtonColumn', 'template' => '{view} {update} {delete}', 'deleteButtonUrl' => 'Yii::app()->controller->createUrl("ajaxproducts/delete", array("id" => $data->primaryKey))'))));