Example #1
0
 function saveDangKyMuaThue()
 {
     // save
     U_ReModelProperties::saveDangKyMuaThue();
     // redirect to response page
     $currentTemplate = JFactory::getApplication()->getTemplate();
     $templatePath = JPATH_THEMES . DS . $currentTemplate . DS . "html" . DS . "com_u_re" . DS . "properties";
     $this->addTemplatePath($templatePath);
     //$this->setLayout( $u_reGlobalConfig['PROPERTY']['mua_thue_template'] );
     $this->setLayout('dang_ky_mua_thue_complete');
     parent::display();
 }
Example #2
0
 function compareProperty($ids)
 {
     $maxIndex = count($ids) - 1;
     $where = ' id IN (';
     for ($i = 0; $i < $maxIndex; $i++) {
         $where .= $ids[$maxIndex] . ',';
     }
     $where .= $ids[$maxIndex];
     $where .= ')';
     global $u_reGlobalConfig;
     $returnField = $u_reGlobalConfig['PROPERTY']['du_lieu_so_sanh_bat_dong_san'];
     $listData = U_ReModelProperties::getListProperties($returnField, $where, 1, '', $maxIndex + 1);
     // load template
     $templateName = JFactory::getApplication()->getTemplate();
     $templatePath = JPATH_THEMES . DS . $templateName . DS . "html" . DS . "com_u_re" . DS . "properties";
     $this->addTemplatePath($templatePath);
     $this->setLayout($u_reGlobalConfig['PROPERTY']['compare_template']);
     $this->assignRef('data', $listData);
     parent::display();
 }
Example #3
0
 function dangKyMail($email)
 {
     $this->assignRef('lang', ilandCommonUtils::getLanguage());
     $this->assignRef('SiteDBConfig', ilandCommonUtils::getSiteDBConfig());
     // global config
     global $u_reGlobalConfig;
     // get data from post
     $data = array();
     $data['du_an_id'] = '-1';
     $data['ten_du_an'] = '';
     $data['ho_ten'] = '';
     $data['dia_chi'] = '';
     $data['dien_thoai'] = '';
     $data['email'] = $email;
     $data['yeu_cau'] = 'Nhận tin mới qua mail';
     $data['ngay_gui'] = '' . time();
     $data['dat_cho'] = '0';
     $data['giao_dich_thanh_cong'] = '0';
     // luu data
     $projectModel = new U_ReModelProjects();
     $result = $projectModel->luuThongTinDatChoDuAn($data);
     // chuyen sang trang thong bao luu thanh cong
     $templatePath = "templates/" . $u_reGlobalConfig['DB']['template'] . "/html/com_u_re/projects/";
     $this->addTemplatePath($templatePath);
     // hardcode template name
     $this->setLayout('dang_ky_mail_thanh_cong');
     $linkData = array();
     $linkData['linkTrangChu'] = 'index.php';
     $linkData['linkListDuAn'] = 'index.php?option=com_u_re&controller=projects&Itemid=24';
     // assign
     $this->assignRef('linkData', $linkData);
     // display template
     parent::display();
 }