public function loadModel($id)
 {
     $model = ProMasterFurnishingIncluded::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Example #2
0
<?php

if ($model->rent_type == 'Tenant') {
    $furnishing_include = json_decode($model->furnishing_include, true);
    if (is_array($furnishing_include) && count($furnishing_include) > 0) {
        $arr = CHtml::listData(ProMasterFurnishingIncluded::model()->findAllByAttributes(array("id" => array_unique($furnishing_include))), 'name', 'name');
        $furnishing_include = '- ' . implode('<br>- ', $arr);
    } else {
        $furnishing_include = '';
    }
    $arrayData = array('type_enquiry', 'rent_type', array('name' => 'property_type_id', 'type' => 'html', 'value' => $PropertyTypeList), array('name' => 'location_list_id', 'type' => 'EngageDistrict'), 'price', 'bedrooms', 'floor_size', 'move_in_date', 'of_persons_staying', array('name' => 'remark', 'type' => 'raw', 'value' => !empty($model->remark) ? $model->remark : ''), 'name', 'email', 'occupation', 'phone', array('name' => 'Country', 'value' => ActiveRecord::getInfoRecord('AreaCode', $model->country_id, 'area_name')), array('name' => 'description', 'type' => 'html', 'value' => nl2br(strip_tags($model->description))), 'created_date:dateTime');
} else {
    $arrayData = array('type_enquiry', array('name' => 'Property Name or Address', 'value' => $model->address), 'rent_type', array('name' => 'property_type_id', 'type' => 'html', 'value' => $PropertyTypeList), array('name' => 'location_list_id', 'type' => 'EngageDistrict'), 'postal_code', 'floor_area', 'unit', 'tenure', array('name' => '# of Bedrooms', 'value' => $model->bedrooms), array('name' => '# of bathrooms', 'value' => $model->bathrooms), 'availability', 'furnished', array('name' => 'remark', 'type' => 'raw', 'value' => !empty($model->remark) ? $model->remark : ''), 'name', array('name' => 'nric', 'value' => !empty($model->nric) ? $model->nric : ''), 'email', 'phone', array('name' => 'Country', 'value' => ActiveRecord::getInfoRecord('AreaCode', $model->country_id, 'area_name')), array('name' => 'description', 'type' => 'html', 'value' => nl2br(strip_tags($model->description))), 'created_date:dateTime');
}
$this->widget('zii.widgets.CDetailView', array('data' => $model, 'attributes' => $arrayData));
Example #3
0
                        </div>
                         <div class="clearfix"></div>
                        <?php 
echo $form->error($model, 'outdoor_indoor_space_json', array('class' => 'class-error'));
?>
                       
                    </div>
                    
                    <div class="in-row clearfix">
                        <?php 
echo $form->labelEx($model, 'furnishing_included_json', array('class' => 'lb'));
?>
                        <div class="group-4 T_row_checkbox_step2">
                            <div>
                                <?php 
echo $form->checkboxList($model, 'furnishing_included_json', ProMasterFurnishingIncluded::getDropdownList(), array('separator' => '', 'template' => '<div class="T_checkbox_list_step2">{input}{label}</div>'));
?>
                              
                            </div>
                        </div>
                          <div class="clearfix"></div>
                        <?php 
echo $form->error($model, 'furnishing_included_json', array('class' => 'class-error'));
?>
                           
                    </div>

                </div>
            </div>
        </div>
    </div>