Exemple #1
0
 public function getOptions($form, $clientid)
 {
     $options = array();
     //Get categories
     $categoriesDb = new Application_Model_DbTable_Category();
     $categoriesObject = $categoriesDb->fetchAll($categoriesDb->select()->where('type = ?', 'contact')->where('clientid = ?', $clientid)->order('ordering'));
     $categories = array();
     foreach ($categoriesObject as $category) {
         if (!$category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     foreach ($categoriesObject as $category) {
         if ($category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     $options['categories'] = $categories;
     //Get countries
     $countryDb = new Application_Model_DbTable_Country();
     $countriesObject = $countryDb->fetchAll($countryDb->select()->where('clientid = ?', $clientid));
     $countries = array();
     foreach ($countriesObject as $country) {
         $countries[$country->code] = $country->name;
     }
     asort($countries);
     $options['countries'] = $countries;
     //Set form options
     if (isset($form->catid)) {
         $form->catid->addMultiOptions($this->getMenuStructure($categories));
     }
     if (isset($form->country)) {
         $form->country->addMultiOptions($countries);
     }
     return $options;
 }
 /**
  * Get all countries where dial code is not null
  * @param string $language language code
  * @return array
  */
 public function getAllCountries($language = null)
 {
     if (!isset($language)) {
         $language = 'en';
     }
     $query = "  SELECT c.*,ct.value AS country_tr\n                    FROM country AS c\n                        LEFT JOIN country_translate AS ct ON c.code2 = ct.code2 AND ct.language = '" . addslashes($language) . "'\n                    WHERE c.dial_code is not NULL ORDER BY ct.value ASC";
     $resultSet = $this->_dbTable->getAdapter()->fetchAll($query);
     $countries = array();
     foreach ($resultSet as $row) {
         $country = new Application_Model_Country();
         if ($row['country_tr']) {
             $row['name'] = $row['country_tr'];
         }
         $country->setOptions($row);
         $countries[] = $country;
     }
     return $countries;
 }
Exemple #3
0
 public function getOptions($form, $clientid)
 {
     $options = array();
     //Get categories
     $categoriesDb = new Application_Model_DbTable_Category();
     $categoriesObject = $categoriesDb->fetchAll($categoriesDb->select()->where('type = ?', 'contact')->where('clientid = ?', $clientid)->order('ordering'));
     $categories = array();
     foreach ($categoriesObject as $category) {
         if (!$category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     foreach ($categoriesObject as $category) {
         if ($category->parentid) {
             $categories[$category->id]['id'] = $category->id;
             $categories[$category->id]['title'] = $category->title;
             $categories[$category->id]['parent'] = $category->parentid;
             if ($category->parentid) {
                 if (!isset($categories[$category->parentid])) {
                     $categories[$category->parentid] = array();
                 }
                 if (!isset($categories[$category->parentid]['childs'])) {
                     $categories[$category->parentid]['childs'] = array();
                 }
                 array_push($categories[$category->parentid]['childs'], $category->id);
             }
         }
     }
     $options['categories'] = $categories;
     //Get countries
     $countryDb = new Application_Model_DbTable_Country();
     $countriesObject = $countryDb->fetchAll($countryDb->select()->where('clientid = ?', $clientid));
     $countries = array();
     foreach ($countriesObject as $country) {
         $countries[$country->code] = $country->name;
     }
     asort($countries);
     $options['countries'] = $countries;
     //Get states
     $options['states'] = array('100' => 'STATES_CREATED', '101' => 'STATES_IN_PROCESS', '102' => 'STATES_PLEASE_CHECK', '103' => 'STATES_PLEASE_DELETE', '104' => 'STATES_RELEASED', '105' => 'STATES_COMPLETED', '106' => 'STATES_CANCELLED');
     //Get date ranges
     $options['daterange'] = array('0' => 'TOOLBAR_ALL', 'today' => 'TOOLBAR_TODAY', 'yesterday' => 'TOOLBAR_YESTERDAY', 'last7days' => 'TOOLBAR_LAST_7_DAYS', 'last14days' => 'TOOLBAR_LAST_14_DAYS', 'last30days' => 'TOOLBAR_LAST_30_DAYS', 'thisMonth' => 'TOOLBAR_THIS_MONTH', 'lastMonth' => 'TOOLBAR_LAST_MONTH', 'thisYear' => 'TOOLBAR_THIS_YEAR', 'lastYear' => 'TOOLBAR_LAST_YEAR', 'custom' => 'TOOLBAR_CUSTOM');
     //Get payment status
     $options['paymentstatus'] = array('waitingForPayment' => 'PROCESSES_WAITING_FOR_PAYMENT', 'prepaymentReceived' => 'PROCESSES_PREPAYMENT_RECEIVED', 'paymentCompleted' => 'PROCESSES_PAYMENT_COMPLETED');
     //Get payment methods
     $paymentmethodDb = new Application_Model_DbTable_Paymentmethod();
     $paymentmethodObject = $paymentmethodDb->fetchAll($paymentmethodDb->select()->where('clientid = ?', $clientid));
     $paymentmethods = array();
     foreach ($paymentmethodObject as $paymentmethod) {
         $paymentmethods[$paymentmethod->title] = $paymentmethod->title;
     }
     $options['paymentmethods'] = $paymentmethods;
     //Get shipping methods
     $shippingmethodDb = new Application_Model_DbTable_Shippingmethod();
     $shippingmethodObject = $shippingmethodDb->fetchAll($shippingmethodDb->select()->where('clientid = ?', $clientid));
     $shippingmethods = array();
     foreach ($shippingmethodObject as $shippingmethod) {
         $shippingmethods[$shippingmethod->title] = $shippingmethod->title;
     }
     $options['shippingmethods'] = $shippingmethods;
     //Set form options
     if (isset($form->catid)) {
         $form->catid->addMultiOptions($this->getMenuStructure($categories));
     }
     if (isset($form->country)) {
         $form->country->addMultiOptions($countries);
     }
     if (isset($form->paymentmethod)) {
         $form->paymentmethod->addMultiOptions($paymentmethods);
     }
     if (isset($form->shippingmethod)) {
         $form->shippingmethod->addMultiOptions($shippingmethods);
     }
     return $options;
 }