mambax7/extcal

View on GitHub
class/LocationHandler.php

Summary

Maintainability
A
1 hr
Test Coverage
<?php

namespace XoopsModules\Extcal;

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

/**
 * @copyright    {@link https://xoops.org/ XOOPS Project}
 * @license      {@link https://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2 or later}
 * @package      extcal
 * @since
 * @author       XOOPS Development Team,
 */

//Kraven 30

require_once XOOPS_ROOT_PATH . '/kernel/object.php';

/**
 * Class LocationHandler.
 */
class LocationHandler extends ExtcalPersistableObjectHandler
{
    /**
     * @param \XoopsDatabase|null $db
     */
    public function __construct(\XoopsDatabase $db = null)
    {
        if (null === $db) {
            $db = \XoopsDatabaseFactory::getDatabaseConnection();
        }
        parent::__construct($db, 'extcal_location', Location::class, 'id', 'nom');
    }

    /**
     * @param      $locationId
     * @param bool $skipPerm
     *
     * @return bool
     */
    public function getLocation($locationId, $skipPerm = false)
    {
        $user = $GLOBALS['xoopsUser'];

        $criteriaCompo = new \CriteriaCompo();
        $criteriaCompo->add(new \Criteria('id', $locationId));

        if (!$skipPerm) {
            $this->addCatPermCriteria($criteriaCompo, $user);
        }
        $ret = $this->getObjects($criteriaCompo);
        return $ret[0] ?? false;
    }

    /**
     * @param \CriteriaElement|null $criteria
     * @param null                  $fields
     * @param bool                  $asObject
     * @param bool                  $id_as_key
     *
     * @return array
     */
    public function &getAll(
        \CriteriaElement $criteria = null,
        $fields = null,
        $asObject = true,
        $id_as_key = true
    ) //getAll($criteria = null, $asObject = false)
    {
        $rst = $this->getObjects($criteria, $asObject);
        if ($asObject) {
            return $rst;
        }

        $ret = $this->objectToArray($rst);

        return $ret;
    }
}