Пример #1
0
echo $form->dropDownListRow($model, 'price', CHtml::listData(PriceType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a type'));
?>
	<?php 
echo $form->dropDownListRow($model, 'category', CHtml::listData(CategoryType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a category'));
?>
	<?php 
echo $form->dropDownListRow($model, 'cuisine', CHtml::listData(CuisineType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a cuisine type'));
?>
	<?php 
echo $form->textFieldRow($model, 'opening_hours', array('class' => 'span6', 'size' => 60, 'maxlength' => 100));
?>
	<?php 
echo $form->checkBoxListRow($model, 'payment', $paymentMethods);
?>
	<?php 
echo $form->dropDownListRow($model, 'attire', CHtml::listData(AttireType::model()->findAll(), 'id', 'name'), array('empty' => 'Select an attire type'));
?>
	<?php 
echo $form->dropDownListRow($model, 'ambience', CHtml::listData(AmbienceType::model()->findAll(), 'id', 'name'), array('empty' => 'Select an ambience type'));
?>
	<?php 
echo $form->dropDownListRow($model, 'groups_option', array('empty' => 'Select one', 'Yes' => 'Yes', 'No' => 'No'));
?>
  
	<?php 
echo $form->dropDownListRow($model, 'kids_option', array('empty' => 'Select one', 'Yes' => 'Yes', 'No' => 'No'));
?>
  
	<?php 
echo $form->textFieldRow($model, 'website', array('class' => 'span6', 'size' => 60, 'maxlength' => 100));
?>
Пример #2
0
 /**
  * @return string the attire text display for the current business
  */
 public function getAttireText()
 {
     $attireOptions = CHtml::listData(AttireType::model()->findAll(), 'id', 'name');
     return isset($attireOptions[$this->attire]) ? $attireOptions[$this->attire] : "-";
 }