Как добавить город в оставить заявку (простая форма)?
Добавлено: 26 апр 2014, 07:15
Добрый день! Подскажите пожалуйста примерный план как реализовать добавление города в оставить заявку (простая форма)?
Обсуждение продуктов компании и фреймворка Yii
https://monoray.ru/forum/
$this->_rules = array(
'onNewSimpleBookingForRent' => array(
'fields' => array('username', 'comment', 'useremail', 'phone', 'rooms', 'date_start', 'date_end', 'city_id'),
'i18nFields' => array('time_inVal', 'time_outVal', 'type'),
'subject' => tt('New booking (simple order).', 'notifier'),
'body' => tt('New booking was created (looking for ::rooms room(s) apartment with type ":i18n:type"). From ::username (::useremail, phone: ::phone), date start: ::date_start, times in: :i18n:time_inVal, date end: ::date_end, time out: :i18n:time_outVal. Com: ::comment', 'notifier').tt('gorod::city_id')."\n",
'active' => param('module_notifier_adminNewBooking', 1),
),
public $city_id;
public function getCityName(){
if(param('useLocation')){
$city = City::model()->findByPk($this->city_id);
} else {
$city = ApartmentCity::model()->findByPk($this->city_id);
}
return $city->getStrByLang('name');
}
tt('gorod ::cityName')