/
home
/
assocoweys
/
cel-char
/
plugins
/
system
/
nrframework
/
NRFramework
/
Conditions
/
Conditions
/
Component
/
Upload File
HOME
<?php /** * @author Tassos.gr * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ namespace NRFramework\Conditions\Conditions\Component; defined('_JEXEC') or die; class HikashopCategory extends HikashopBase { /** * Shortcode aliases for this Condition */ public static $shortcode_aliases = ['hikashopcategory']; /** * Pass check * * @return bool */ public function pass() { return $this->passCategories('hikashop_category', 'category_parent_id'); } /** * Returns all parent rows * * @param integer $id Row primary key * @param string $table Table name * @param string $parent Parent column name * @param string $child Child column name * * @return array Array with IDs */ public function getParentIds($id = 0, $table = 'hikashop_category', $parent = 'category_parent_id', $child = 'category_id') { return parent::getParentIds($id, $table, $parent, $child); } }