mambax7/pedigree

View on GitHub
class/TreeHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace XoopsModules\Pedigree;

/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.

 This program 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.
*/

/**
 * Pedigree module for XOOPS
 *
 * @copyright       {@link http://sourceforge.net/projects/xoops/ The XOOPS Project}
 * @license         GPL 2.0 or later
 * @package         pedigree
 * @since           2.5.x
 * @author          XOOPS Module Dev Team (https://xoops.org)
 */

\defined('XOOPS_ROOT_PATH') || die('Restricted access');

/**
 * Class Pedigree\TreeHandler
 */
class TreeHandler extends \XoopsPersistableObjectHandler
{
    use CountOverload;

    /**
     * @param null|object|\XoopsDatabase $db
     */
    public function __construct(\XoopsDatabase $db)
    {
        parent::__construct($db, 'pedigree_registry', Tree::class, 'id', 'pname');
    }

    /**
     * Get criteria for active animals
     *
     * @param null|string $roft
     * @return \CriteriaCompo
     * @todo Refactor: Currently this routine returns all animals with `roft` = $roft
     */
    public function getActiveCriteria(?string $roft = null)
    {
        //$grouppermHandler = \xoops_getHandler('groupperm');

        //        $criteria = new \CriteriaCompo(new \Criteria('offline', false));
        //        $criteria->add(new \Criteria('published', 0, '>'));
        //        $criteria->add(new \Criteria('published', time(), '<='));
        //        $expiredCriteria = new \CriteriaCompo(new \Criteria('expired', 0));
        //        $expiredCriteria->add(new \Criteria('expired', time(), '>='), 'OR');
        //        $criteria->add($expiredCriteria);

        // add criteria for categories that the user has permissions for
        //        $groups                   = is_object($GLOBALS['xoopsUser']) ? $GLOBALS['xoopsUser']->getGroups() : array(0 => XOOPS_GROUP_ANONYMOUS);
        //mb        $allowedDownCategoriesIds = $grouppermHandler->getItemIds('WFDownCatPerm', $groups, $this->wfdownloads->getModule()->mid());
        //mb        $criteria->add(new \Criteria('cid', '(' . implode(',', $allowedDownCategoriesIds) . ')', 'IN'));

        $criteria = new \CriteriaCompo();
        if (null !== $roft) {
            $criteria->add(new \Criteria('roft', $roft));
        }
        $criteria->setSort('pname ASC');
        $criteria->setOrder('ASC');

        return $criteria;
    }
}