1: <?php
2: /*
3: You may not change or alter any portion of this comment or credits
4: of supporting developers from this source code or any supporting source code
5: which is considered copyrighted (c) material of the original comment or credit authors.
6:
7: This program is distributed in the hope that it will be useful,
8: but WITHOUT ANY WARRANTY; without even the implied warranty of
9: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: */
11:
12: namespace Xoops\Core\Kernel\Handlers;
13:
14: use Xoops\Core\Kernel\Dtype;
15: use Xoops\Core\Kernel\XoopsObject;
16:
17: /**
18: * XOOPS Kernel Class
19: *
20: * @category Xoops\Core\Kernel\Handlers\XoopsBlockModuleLink
21: * @package Xoops\Core\Kernel
22: * @author Gregory Mage (AKA Mage)
23: * @author trabis <lusopoemas@gmail.com>
24: * @copyright 2000-2015 XOOPS Project (http://xoops.org)
25: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
26: * @link http://xoops.org
27: */
28: class XoopsBlockModuleLink extends XoopsObject
29: {
30: /**
31: * Constructor
32: */
33: public function __construct()
34: {
35: $this->initVar('block_id', Dtype::TYPE_INTEGER);
36: $this->initVar('module_id', Dtype::TYPE_INTEGER);
37: }
38: }
39: