Ejemplo n.º 1
0
 /**
  * Renders a dropdown list for a model attribute.
  * @param CModel $model the data model.
  * @param string $attribute the attribute.
  * @param array $data data for generating the list options (value=>display).
  * @param array $htmlOptions additional HTML attributes.
  * @return string the generated drop down list.
  * @see BSHtml::activeDropDownList
  */
 public function dropDownList($model, $attribute, $data, $htmlOptions = array())
 {
     return BSHtml::activeDropDownList($model, $attribute, $data, $htmlOptions);
 }