PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
administrator
/
components
/
com_j2store
/
controllers
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access to this file defined('_JEXEC') or die; jimport('joomla.application.component.controllerform'); class J2StoreControllerGeozones extends F0FController { function getZone() { $app=JFactory::getApplication(); $data = $app->input->post->get('jform',array(),'array'); $country_id =isset($data['country_id'])?$data['country_id']:$app->input->getInt('country_id', '0'); $zone_id = isset($data['zone_id'])?$data['zone_id']:$app->input->getInt('zone_id'); $z_fname =isset($data['field_name'])?$data['field_name']:$app->input->getString('field_name'); $z_id = isset($data['field_id'])?$data['field_id']:$app->input->getString('field_id'); // based on the country id, get zones and generate a select box if(!empty($country_id)) { $db = JFactory::getDBO(); $query = $db->getQuery(true); $query->select('j2store_zone_id,zone_name'); $query->from('#__j2store_zones'); $query->where('country_id='.$country_id); $db->setQuery((string)$query); $zoneList = $db->loadObjectList(); $options = array(); $options[] = JHtml::_('select.option', 0,JTEXT::_('J2STORE_ALL_ZONES')); if ($zoneList) { foreach($zoneList as $zone) { // this is only to generate the <option> tag inside select tag da i have told n times $options[] = JHtml::_('select.option', $zone->j2store_zone_id,$zone->zone_name); } } // now we must generate the select list and echo that... wait //$z_fname='jform[state_id]'; $zoneList = JHtml::_('select.genericlist', $options, $z_fname, '', 'value', 'text',$zone_id,$z_id); echo $zoneList; } $app->close(); } /** * Method to delete * Geo Rule of GeoZones * @params */ function removeGeozoneRule(){ $app = JFactory::getApplication(); $post = $app->input->getArray($_POST); $georule_id = $post['rule_id']; $georuleTable = F0FTable::getInstance('geozonerule','Table'); $json=array(); if(!$georuleTable->delete($georule_id)){ $json['msg'] = $georuleTable->getError(); }else{ $json['msg'] = JText::_('J2STORE_GEORULE_DELETED_SUCCESSFULLY'); } echo json_encode($json); $app->close(); } /** * * Method to import list of countries * and create into geozonerules */ function importcountry(){ $geozone_id = $this->input->getInt('geozone_id'); $cids = $this->input->get('cid',array(), 'ARRAY'); $link ='index.php?option=com_j2store&view=geozones'; $msg_type ='warning'; $msg =JText::_('J2STORE_ERROR_IN_IMPORTING'); if(isset($geozone_id) && $geozone_id){ foreach($cids as $cid){ $geozoneRule = F0FTable::getAnInstance('Geozonerule','J2StoreTable'); $geozoneRule->geozone_id = $geozone_id; $geozoneRule->country_id = $cid; try{ $geozoneRule->store(); $msg =JText::_('J2STORE_IMPORTED_SUCCESSFULLY'); }catch (Exception $e){ //$msg = $e; } } $link ='index.php?option=com_j2store&view=countries&layout=modal&task=elements&tmpl=component&geozone_id='.$geozone_id; $msg_type ='message'; } JFactory::getApplication()->redirect($link,$msg,$msg_type); } /** * Method to import list of zones */ function importzone(){ $geozone_id = $this->input->getInt('geozone_id'); $country_id = $this->input->getInt('country_id'); $cids = $this->input->get('cid',array(), 'ARRAY'); $link ='index.php?option=com_j2store&view=geozones'; $msg_type ='warning'; $msg =JText::_('J2STORE_ERROR_IN_IMPORTING'); if(isset($geozone_id) && $geozone_id && isset($country_id) && $country_id){ foreach($cids as $cid){ $geozoneRule = F0FTable::getAnInstance('Geozonerule','J2StoreTable'); $geozoneRule->geozone_id = $geozone_id; $geozoneRule->zone_id = $cid; $geozoneRule->country_id = $country_id; $geozoneRule->store(); } $link ='index.php?option=com_j2store&view=zones&layout=modal&task=elements&tmpl=component&geozone_id='.$geozone_id; $msg_type ='message'; $msg =JText::_('J2STORE_IMPORTED_SUCCESSFULLY'); } JFactory::getApplication()->redirect($link,$msg,$msg_type); } }
[-] shippings.php
[edit]
[-] cpanels.php
[edit]
[-] coupons.php
[edit]
[-] countries.php
[edit]
[-] productbase.php
[edit]
[-] inventories.php
[edit]
[-] configurations.php
[edit]
[-] orders.php
[edit]
[-] index.html
[edit]
[-] customers.php
[edit]
[-] crons.php
[edit]
[-] apps.php
[edit]
[-] taxprofile.php
[edit]
[-] queues.php
[edit]
[-] emailtemplates.php
[edit]
[-] zones.php
[edit]
[-] reports.php
[edit]
[-] postconfig.php
[edit]
[-] carts.php
[edit]
[-] products.php
[edit]
[-] geozones.php
[edit]
[-] currencies.php
[edit]
[-] filtergroups.php
[edit]
[-] options.php
[edit]
[-] appstores.php
[edit]
[-] customfields.php
[edit]
[-] vouchers.php
[edit]
[-] shippingtroubles.php
[edit]
[+]
..
[-] promotions.php
[edit]
[-] payments.php
[edit]