File manager - Edit - /home/jardides/www/Jardi-design/old/components/com_hotspots/helpers/category.php
Back
<?php /** * @package com_hotspots * @author DanielDimitrov <daniel@compojoom.com> * @date 18.01.2015 * * @copyright Copyright (C) 2008 - 2013 compojoom.com . All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('_JEXEC') or die('Restricted access'); class HotspotsCategories extends JCategories { /** * Constructor * * @param array $options Array of options * * @since 1.6 */ public function __construct($options = array()) { $options['table'] = '#__hotspots_marker'; $options['extension'] = 'com_hotspots'; parent::__construct($options); } /** * Removes categories from the array * * @param array $categories - categories array with category Objects * * @return array */ public function excludeCategories($categories) { $excludeIds = HotspotsHelperSettings::get('exclude_categories', array()); if (count($excludeIds)) { $categories = array_filter( $categories, function ($category) use ($excludeIds) { if (in_array($category->id, $excludeIds)) { return false; } return true; } ); } return $categories; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings