Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/mijoshop.php.tar
Назад
home/wuectly/www/libraries/regularlabs/helpers/assignments/mijoshop.php 0000604 00000005770 15245607157 0022652 0 ustar 00 <?php /** * @package Regular Labs Library * @version 21.4.10972 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ /* @DEPRECATED */ defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; if (is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php')) { require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; } require_once dirname(__DIR__) . '/assignment.php'; class RLAssignmentsMijoShop extends RLAssignment { public function init() { $input = JFactory::getApplication()->input; $category_id = $input->getCmd('path', 0); if (strpos($category_id, '_')) { $category_id = end(explode('_', $category_id)); } $this->request->item_id = $input->getInt('product_id', 0); $this->request->category_id = $category_id; $this->request->id = ($this->request->item_id) ? $this->request->item_id : $this->request->category_id; $view = $input->getCmd('view', ''); if (empty($view)) { $mijoshop = JPATH_ROOT . '/components/com_mijoshop/mijoshop/mijoshop.php'; if ( ! file_exists($mijoshop)) { return; } require_once($mijoshop); $route = $input->getString('route', ''); $view = MijoShop::get('router')->getView($route); } $this->request->view = $view; } public function passPageTypes() { return $this->passByPageTypes('com_mijoshop', $this->selection, $this->assignment, true); } public function passCategories() { if ($this->request->option != 'com_mijoshop') { return $this->pass(false); } $pass = ( ($this->params->inc_categories && ($this->request->view == 'category') ) || ($this->params->inc_items && $this->request->view == 'product') ); if ( ! $pass) { return $this->pass(false); } $cats = []; if ($this->request->category_id) { $cats = $this->request->category_id; } else if ($this->request->item_id) { $query = $this->db->getQuery(true) ->select('c.category_id') ->from('#__mijoshop_product_to_category AS c') ->where('c.product_id = ' . (int) $this->request->id); $this->db->setQuery($query); $cats = $this->db->loadColumn(); } $cats = $this->makeArray($cats); $pass = $this->passSimple($cats, 'include'); if ($pass && $this->params->inc_children == 2) { return $this->pass(false); } else if ( ! $pass && $this->params->inc_children) { foreach ($cats as $cat) { $cats = array_merge($cats, $this->getCatParentIds($cat)); } } return $this->passSimple($cats); } public function passProducts() { if ( ! $this->request->id || $this->request->option != 'com_mijoshop' || $this->request->view != 'product') { return $this->pass(false); } return $this->passSimple($this->request->id); } private function getCatParentIds($id = 0) { return $this->getParentIds($id, 'mijoshop_category', 'parent_id', 'category_id'); } } home/wuectly/www/libraries/regularlabs/fields/mijoshop.php 0000604 00000006450 15245667636 0020127 0 ustar 00 <?php /** * @package Regular Labs Library * @version 21.4.10972 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php')) { return; } require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; class JFormFieldRL_MijoShop extends \RegularLabs\Library\FieldGroup { public $type = 'MijoShop'; public $store_id = 0; public $language_id = 1; protected function getInput() { if ($error = $this->missingFilesOrTables(['categories' => 'category', 'products' => 'product'])) { return $error; } if ( ! class_exists('MijoShop')) { require_once(JPATH_ROOT . '/components/com_mijoshop/mijoshop/mijoshop.php'); } $this->store_id = (int) MijoShop::get('opencart')->get('config')->get('config_store_id'); $this->language_id = (int) MijoShop::get('opencart')->get('config')->get('config_language_id'); return $this->getSelectList(); } function getCategories() { $query = $this->db->getQuery(true) ->select('COUNT(*)') ->from('#__mijoshop_category AS c') ->join('INNER', '#__mijoshop_category_description AS cd ON c.category_id = cd.category_id') ->join('INNER', '#__mijoshop_category_to_store AS cts ON c.category_id = cts.category_id') ->where('c.status = 1') ->where('cd.language_id = ' . $this->language_id) ->where('cts.store_id = ' . $this->store_id) ->group('c.category_id'); $this->db->setQuery($query); $total = $this->db->loadResult(); if ($total > $this->max_list_count) { return -1; } $query->clear('select') ->select('c.category_id AS id, c.parent_id, cd.name AS title, c.status AS published') ->order('c.sort_order, cd.name'); $this->db->setQuery($query); $items = $this->db->loadObjectList(); return $this->getOptionsTreeByList($items); } function getProducts() { $query = $this->db->getQuery(true) ->select('COUNT(*)') ->from('#__mijoshop_product AS p') ->join('INNER', '#__mijoshop_product_description AS pd ON p.product_id = pd.product_id') ->join('INNER', '#__mijoshop_product_to_store AS pts ON p.product_id = pts.product_id')->where('p.status = 1') ->where('p.date_available <= NOW()') ->where('pd.language_id = ' . $this->language_id) ->group('p.product_id'); $this->db->setQuery($query); $total = $this->db->loadResult(); if ($total > $this->max_list_count) { return -1; } $query->clear('select') ->select('p.product_id as id, pd.name, p.model as model, cd.name AS cat, p.status AS published') ->join('LEFT', '#__mijoshop_product_to_category AS ptc ON p.product_id = ptc.product_id') ->join('LEFT', '#__mijoshop_category_description AS cd ON ptc.category_id = cd.category_id') ->join('LEFT', '#__mijoshop_category_to_store AS cts ON ptc.category_id = cts.category_id') ->where('cts.store_id = ' . $this->store_id) ->where('cd.language_id = ' . $this->language_id) ->where('cts.store_id = ' . $this->store_id) ->order('pd.name, p.model'); $this->db->setQuery($query); $list = $this->db->loadObjectList(); return $this->getOptionsByList($list, ['model', 'cat', 'id']); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка