for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XoopsModules\Newbb;
/**
* NewBB 5.0x, the forum module for XOOPS project
*
* @copyright XOOPS Project (https://xoops.org)
* @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author Taiwen Jiang (phppp or D.J.) <[email protected]>
* @since 4.00
* @package module::newbb
*/
* A handler for User moderation management
* @package newbb
* @author D.J. (phppp, http://xoopsforge.com)
* @copyright copyright (c) 2005 XOOPS.org
class Moderate extends \XoopsObject
{
public function __construct()
parent::__construct();
$this->initVar('mod_id', \XOBJ_DTYPE_INT);
$this->initVar('mod_start', \XOBJ_DTYPE_INT);
$this->initVar('mod_end', \XOBJ_DTYPE_INT);
$this->initVar('mod_desc', \XOBJ_DTYPE_TXTBOX);
$this->initVar('uid', \XOBJ_DTYPE_INT);
$this->initVar('ip', \XOBJ_DTYPE_TXTBOX);
$this->initVar('forum_id', \XOBJ_DTYPE_INT);
}