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; class J2StoreControllerOptions extends F0FController { public function deleteoptionvalue(){ $app = JFactory::getApplication(); $option_value_id = $app->input->getInt('optionvalue_id'); $product_optionValue = F0FTable::getInstance('Productoptionvalue','J2StoreTable')->getClone(); $product_optionValue->load(array( 'optionvalue_id' => $option_value_id )); $json =array(); $delete_status = true; if($product_optionValue->j2store_product_optionvalue_id > 0){ $delete_status = false; } if($delete_status){ $optionValue = F0FTable::getInstance('Optionvalue','J2StoreTable')->getClone(); $optionValue->load($option_value_id); $msg_type = "success"; $msg_header ='Message'; $msg = JText::_('J2STORE_OPTION_VALUE_DELETED_SUCCESSFULLY'); $json['success'] = true; if(!$optionValue->delete()){ $json['success'] = false; $msg_type = "warning"; $msg = JText::_('J2STORE_OPTION_VALUE_DELETE_ERROR'); $msg_header ='Warning'; } }else{ $json['success'] = false; $msg_type = "warning"; $msg = JText::_('J2STORE_OPTION_VALUE_USED_IN_SOME_PRODUCT'); $msg_header ='Warning'; } $html = "<div class='alert alert-$msg_type'>"; $html .="<h4 class='alert-heading'>". $msg_header."</h4>"; $html .="<p>" .$msg."</p></div>"; $json['html'] = $html; echo json_encode($json); $app->close(); } public function getOptions() { $app = JFactory::getApplication(); $q = $app->input->post->get('q', '','string'); $json = array(); $model = $this->getThisModel('options'); $result = $model->getOptions($q); $product_type = $app->input->getString('product_type'); if($product_type =='configurable'){ $json['options'] = $result; //get parent $json['pa_options']= $model->getParent($q); }else{ $json = $result; } echo json_encode($json); $app->close(); } }
[-] 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]