PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
modules
/
mod_djc2categories
<?php /** * @version $Id: helper.php 418 2015-05-11 12:43:29Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ defined ('_JEXEC') or die('Restricted access'); require_once(JPATH_BASE.DS.'components'.DS.'com_djcatalog2'.DS.'helpers'.DS.'route.php'); require_once(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_djcatalog2'.DS.'lib'.DS.'categories.php'); class DJC2CategoriesModuleHelper { public static function getHtml($cid, $expand, $params, $root_id = 0, $moduleId) { $user = JFactory::getUser(); $groups = $user->getAuthorisedViewLevels(); $categories = Djc2Categories::getInstance(array('state'=>'1', 'access' => $groups)); $root = $categories->get(0); $class_sfx = htmlspecialchars($params->get('moduleclass_sfx', '')); $current = $categories->get($cid); $path = array(); if (!empty($current)) { foreach ($current->getPath() as $item) { $path[] = (int)$item; } } if ((int)$root_id > 0) { if ($new_root = $categories->get($root_id)) { $root = $new_root; } } $show_count = (bool)$params->get('display_counter', false); $layout = $params->get('category_layout', 'list'); $html = ''; if ($layout == 'list') { $html = '<ul class="menu'.$class_sfx.' nav mod_djc2categories_list">'; self::makeList($html, $root, $path, $expand, $cid, 0, $show_count); $html .= '</ul>'; } else { $html = '<form class="mod_djc2categories_form" name="mod_djc2categories_form" id="mod_djc2categories_form-'.$moduleId.'" method="post" action="'.JRoute::_('index.php?option=com_djcatalog2&task=search').'">'; $category_options = $categories->getOptionList('- '.JText::_('MOD_DJC2CATEGORIES_SELECT_CATEGORY').' -'); if ((int)$root_id > 0) { $category_path = $current->getPath(); $parent_category = null; $parent_id = (count($category_path) || (int)$cid == 0) ? $root_id : 0; $parent_category = $categories->get($parent_id); if ($parent_category) { $childrenList = array($parent_category->id); $parent_category->makeChildrenList($childrenList); foreach ($category_options as $key => $option) { if (!in_array($option->value, $childrenList)) { unset($category_options[$key]); } if ($option->value == $parent_category->id) { $category_options[$key]->text = '- '.JText::_('MOD_DJC2CATEGORIES_SELECT_CATEGORY').' -'; } } } } $html .= JHTML::_('select.genericlist', $category_options, 'cid', 'class="inputbox mod_djc2categories_list" onchange="this.form.submit();"', 'value', 'text', $cid, 'mod_djc2categories_list-'.$moduleId); $html .= '<noscript><input type="submit" /></noscript>'; $html .= '</form>'; } return $html; } private static function makeList(&$html, &$root, $path, $expand, $cid, $level = 0, $show_count = false) { $children = $root->getChildren(); foreach($children as $child) { $current = (($child->id == $cid)) ? true:false; $parent = (count($child->getChildren())) ? true:false; $active = (($current || in_array($child->id, $path))) ? true:false; $deeper = ($parent && $expand) ? true:false; $class = 'djc_catid-'.$child->id.' level'.$level; $class .= ( $current ) ? ' current':''; $class .= ( $active ) ? ' active':''; $class .= ( $parent ) ? ' parent':''; $class .= ( $deeper ) ? ' deeper':''; $display_name = $child->name; if ($show_count) { if (($count = $child->getProductCount()) !== false) { $display_name = $child->name.' <small class="djc_category_counter">['.$count.']</small>'; } } $html.= '<li class="'.$class.'"><a href="'.JRoute::_(DJCatalogHelperRoute::getCategoryRoute($child->id.':'.$child->alias), true).'">'.$display_name.'</a>'; if (($active || $expand) && count($child->getChildren())) { $html .= '<ul>'; $level++; self::makeList($html, $child, $path, $expand, $cid, $level, $show_count); $level--; $html .= '</ul>'; } $html .= '</li>'; } } } ?>
[+]
..
[-] helper.php
[edit]
[-] index.html
[edit]
[+]
language
[-] mod_djc2categories.php
[edit]
[-] mod_djc2categories.xml
[edit]
[+]
tmpl
[-] .htaccess.disabled
[edit]