Файловый менеджер - Редактировать - /home/lmsyaran/public_html_back/public_html/administrator/components/com_hikashop/controllers/field.php
Назад
<?php /** * @package HikaShop for Joomla! * @version 4.4.1 * @author hikashop.com * @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class FieldController extends hikashopController { var $pkey = 'field_id'; var $table = 'field'; var $groupMap = ''; var $groupVal = ''; var $orderingMap = 'field_ordering'; public function __construct($config = array()){ parent::__construct($config); $this->modify_views[] = 'state'; $this->modify_views[] = 'parentfield'; } function store($new = false) { JSession::checkToken() || die('Invalid Token'); $app = JFactory::getApplication(); $fieldClass = hikashop_get('class.field'); $status = $fieldClass->saveForm(); if($status) { if(!HIKASHOP_J30) $app->enqueueMessage(JText::_('HIKASHOP_SUCC_SAVED'), 'success'); else $app->enqueueMessage(JText::_('HIKASHOP_SUCC_SAVED')); $translationHelper = hikashop_get('helper.translation'); if($translationHelper->isMulti(true) && $translationHelper->falang) { $updateHelper = hikashop_get('helper.update'); $updateHelper->addJoomfishElements(false); } } else { $app->enqueueMessage(JText::_( 'ERROR_SAVING' ), 'error'); if(!empty($fieldClass->errors)) { foreach($fieldClass->errors as $oneError) { $app->enqueueMessage($oneError, 'error'); } } } } public function remove() { JSession::checkToken() || die('Invalid Token'); $cids = hikaInput::get()->get('cid', array(), 'array'); $fieldClass = hikashop_get('class.field'); $num = $fieldClass->delete($cids); if($num) { $app = JFactory::getApplication(); $app->enqueueMessage(JText::sprintf('SUCC_DELETE_ELEMENTS', $num), 'message'); } return $this->listing(); } function state(){ hikashop_nocache(); $namekey = hikaInput::get()->getCmd('namekey', ''); if(empty($namekey)) exit; $field_namekey = hikaInput::get()->getCmd('field_namekey', ''); if(empty($field_namekey)) $field_namekey = 'address_state'; $field_id = hikaInput::get()->getCmd('field_id', ''); if(empty($field_id)) $field_id = 'address_state'; $field_type = hikaInput::get()->getCmd('field_type', ''); if(empty($field_type)) $field_type = 'address'; $countryType = hikashop_get('type.country'); echo $countryType->displayStateDropDown($namekey, $field_id, $field_namekey, $field_type); exit; } public function parentfield() { hikashop_nocache(); $type = hikaInput::get()->getVar('type'); $namekey = hikaInput::get()->getVar('namekey'); $value = hikaInput::get()->getString('value'); if(empty($namekey) || empty($type)) exit; $fieldClass = hikashop_get('class.field'); $field = $fieldClass->getField($namekey,$type); if($field->field_type != 'zone' || empty($field->field_options['zone_type']) || $field->field_options['zone_type'] != 'state') { echo $fieldClass->display($field,$value,'field_options[parent_value]', false, '', true); exit; } $null = null; $fields = $fieldClass->getFields('', $null, $type); $countryField = null; foreach($fields as $brotherField) { if($brotherField->field_type == 'zone' && !empty($brotherField->field_options['zone_type']) && $brotherField->field_options['zone_type'] == 'country') { $countryField = $brotherField; break; } } if($countryField) { $baseUrl = JURI::base().'index.php?option=com_hikashop&ctrl=field&task=state&tmpl=component'; $currentUrl = strtolower(hikashop_currentUrl()); $s = (substr($currentUrl, 0, 8) == 'https://') ? 9 : 8; $domain = substr($currentUrl, 0, strpos($currentUrl, '/', $s)); $s = (substr($baseUrl, 0, 8) == 'https://') ? 9 : 8; $baseUrl = $domain . substr($baseUrl, strpos($baseUrl, '/', $s)); $countryField->field_url = $baseUrl . '&'; echo $fieldClass->display($countryField, $countryField->field_default, 'field_options_parent_value', false, '', true); } echo $fieldClass->display($field,$value, 'field_options[parent_value]', false, '', true); exit; } public function findList() { $search = hikaInput::get()->getVar('search', ''); $start = hikaInput::get()->getInt('start', 0); $displayFormat = hikaInput::get()->getVar('displayFormat', ''); $options = array(); if(!empty($displayFormat)) $options['displayFormat'] = $displayFormat; if($start > 0) $options['page'] = $start; $nameboxType = hikashop_get('type.namebox'); $elements = $nameboxType->getValues($search, 'field', $options); echo json_encode($elements); exit; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка