for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* XOOPS Kernel Class
*
* 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 XOOPS Project (http://xoops.org)
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
* @package kernel
* @since 2.0.0
* @author Kazumi Ono (AKA onokazu) http://www.myweb.ne.jp/, http://jp.xoops.org/
* @version $Id$
*/
namespace Xoops\Core\Kernel\Handlers;
use Xoops\Core\Database\Connection;
use Xoops\Core\Kernel\XoopsPersistableObjectHandler;
* XOOPS configuration option handler class.
* This class is responsible for providing data access mechanisms to the data source
* of XOOPS configuration option class objects.
* @category Xoops\Core\Kernel\Handlers\XoopsConfigOptionHandler
* @package Xoops\Core\Kernel
* @author Kazumi Ono <[email protected]>
* @copyright 2000-2015 XOOPS Project (http://xoops.org)
* @link http://xoops.org
class XoopsConfigOptionHandler extends XoopsPersistableObjectHandler
{
* Constructor
* @param Connection|null $db database
public function __construct(Connection $db = null)
parent::__construct(
$db,
'system_configoption',
'\Xoops\Core\Kernel\Handlers\XoopsConfigOption',
'confop_id',
'confop_name'
);
}