我正在将Osclass用于机密网站http://adzhome.com,我想将标题显示为“城市地区,城市,地区的公寓”。我可以获取项目的区域和城市信息,但无法获取城市区域。谁能让我知道我可以用来取城区的功能?
答案 0 :(得分:0)
在oc-include/osclass/frm/Item.form.class.php
中粘贴以下功能并将该功能调用为
<?php ItemForm::city_area_select( CityArea::newInstance()->findByCity('3')) ; ?>
。
这就是我能够在我的分类http://aclassifieds.in
中实现城市区域的方式static public function city_area_select($citi_area = null, $item = null) {
if( Session::newInstance()->_getForm('cityArea') != ''){
$citi_area = null;
} else {
if($citi_area==null) { $citi_area = array(); };
}
if($item==null) { $item = osc_item(); };
if( count($citi_area) >= 1 ) {
if( Session::newInstance()->_getForm('cityAreaId') != "" ) {
$item['fk_i_city_area_id'] = Session::newInstance()->_getForm('cityAreaId');
}
if( Session::newInstance()->_getForm('cityId') != "" ) {
$item['fk_i_city_id'] = Session::newInstance()->_getForm('cityId');
}
parent::generic_select('cityAreaId', $citi_area, 'pk_i_id', 's_name', __('Select a city area..'), (isset($item['fk_i_city_area_id'])) ? $item['fk_i_city_area_id'] : null) ;
return true ;
} else {
if( Session::newInstance()->_getForm('cityArea') != "" ) {
$item['s_city_area'] = Session::newInstance()->_getForm('cityArea');
}
parent::generic_input_text('cityArea', (isset($item['s_city_area'])) ? $item['s_city_area'] : null) ;
return true ;
}
}