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.mail.helper'); class J2StoreControllerCustomers extends F0FController { public function __construct($config =array()) { parent::__construct($config); $this->registerTask('confirmchangeEmail','changeEmail'); } /** * * @return boolean */ function viewOrder(){ $email = $this->input->getString('email_id'); $user_id = $this->input->getInt('user_id'); $this->layout='view'; $this->display(); return true; } /** * Delete selected item(s) * * @return bool */ public function remove() { // Initialise the App variables $app=JFactory::getApplication(); $cids = $app->input->get('cid',array(),'ARRAY'); if(!empty( $cids ) && $app->isAdmin() ){ foreach ($cids as $cid){ // store the table in the variable $address = F0FTable::getInstance('Address', 'J2StoreTable')->getClone (); $address->load($cid); $addresses = F0FModel::getTmpInstance('Addresses','J2StoreModel')->email($address->email)->getList(); foreach ($addresses as $e_address){ $address = F0FTable::getInstance('Address', 'J2StoreTable')->getClone (); $address->load($e_address->j2store_address_id); $address->delete (); } } } $msg = JText::_('J2STORE_ITEMS_DELETED'); $link = 'index.php?option=com_j2store&view=customers'; $this->setRedirect($link, $msg); } /** * Method to delete customer */ function delete() { // Initialise the App variables $app=JFactory::getApplication(); // Assign the get Id to the Variable $id=$app->input->getInt('id'); if($id && $app->isAdmin()) { // store the table in the variable $address = F0FTable::getInstance('Address', 'J2StoreTable'); $address->load($id); $email = $address->email; try { $address->delete(); $msg = JText::_('J2STORE_ITEMS_DELETED'); } catch (Exception $error) { $msg = $error->getMessage(); } } $link = 'index.php?option=com_j2store&view=customer&task=viewOrder&email_id='.$email; $this->setRedirect($link, $msg); } function editAddress(){ // Initialise the App variables $app = JFactory::getApplication(); // Assign the get Id to the Variable $id = $app->input->getInt('id',0); if($id && $app->isAdmin()) { // store the table in the variable $address = F0FTable::getAnInstance('Address','J2StoreTable'); $address->load($id); $address_type = $address->type; if(empty( $address_type )){ $address_type = 'billing'; } $model = F0FModel::getTmpInstance('Customers','J2StoreModel'); $view = $this->getThisView(); $view->setModel($model, true); $view->addTemplatePath(JPATH_ADMINISTRATOR.'/components/com_j2store/views/customer/tmpl/'); $view->set('address_type',$address_type); $fieldClass = J2Store::getSelectableBase(); $view->set('fieldClass' , $fieldClass); $view->set('address',$address); $view->set('item',$address); $view->setLayout('editaddress'); $view->display(); //$this->display(); return true; }else{ $this->redirect ('index.php?option=com_j2store&view=customers'); } } function saveCustomer(){ $app = JFactory::getApplication (); $data = $app->input->getArray($_POST); $address_id = $app->input->getInt('j2store_address_id'); $address = F0FTable::getAnInstance('Address','J2StoreTable'); $address->load($address_id); $msg =JText::_('J2STORE_ADDRESS_SAVED_SUCCESSFULLY'); $msgType='message'; $address->bind($data); if(!$address->save($data)){ $msg =JText::_('J2STORE_ADDRESS_SAVED_SUCCESSFULLY'); $msgType='warning'; } $url = "index.php?option=com_j2store&view=customer&task=editAddress&id=".$address->j2store_address_id."&tmpl=component"; $this->setRedirect($url, $msg,$msgType); } function changeEmail(){ // Initialise the App variables $app=JFactory::getApplication(); if($app->isAdmin()){ $json = array(); $model = $this->getThisModel(); // Assign the get Id to the Variable $email_id=$app->input->getString('email'); $new_email=$app->input->getString('new_email'); if(empty($new_email) && !JMailHelper::isEmailAddress($new_email) ){ $json = array('msg' => JText::_('Invalid Email Address'), 'msgType' => 'warning'); }else{ //incase an account already exists ? if($app->input->getString('task') == 'changeEmail'){ $json = array('msg' => JText::_('J2STORE_EMAIL_UPDATE_NO_WARNING'), 'msgType' => 'message'); $json = $this->validateEmailexists($new_email); }elseif($app->input->getString('task') == 'confirmchangeEmail'){ $json = array( 'redirect' => JUri::base().'index.php?option=com_j2store&view=customer&task=viewOrder&email_id='.$new_email, 'msg' => JText::_('J2STORE_SUCCESS_SAVING_EMAIL'), 'msgType' => 'message'); if(!$model->savenewEmail()){ $json = array('msg' => JText::_('J2STORE_ERROR_SAVING_EMAIL'), 'msgType' => 'warning' ); } } } echo json_encode($json); $app->close(); } } function validateEmailexists($new_email){ $json = array(); $success = true; $model = $this->getThisModel(); if(J2Store::user()->emailExists($new_email)){ $success = false; $json = array('msg' => JText::_('J2STORE_EMAIL_UPDATE_ERROR_WARNING'), 'msgType' => 'warning'); } if($success){ $json = array( 'redirect' => JUri::base().'index.php?option=com_j2store&view=customer&task=viewOrder&email_id='.$new_email, 'msg' => JText::_('J2STORE_SUCCESS_SAVING_EMAIL'), 'msgType' => 'message'); if(!$model->savenewEmail()){ $json = array('msg' => JText::_('J2STORE_ERROR_SAVING_EMAIL'), 'msgType' => 'warning' ); } } return $json; } }
[-] 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]