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: /**
13: * Compatibility layer - Xoops Event processing, including preload mechanism
14: *
15: * @category Xoops\Core\Events
16: * @package Xoops\Core
17: * @author trabis <lusopoemas@gmail.com>
18: * @author Richard Griffith <richard@geekwright.com>
19: * @copyright 2013 XOOPS Project (http://xoops.org)
20: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
21: * @version Release: 1.0
22: * @link http://xoops.org
23: * @since 1.0
24: */
25: class XoopsPreload extends \Xoops\Core\Events
26: {
27: }
28:
29: /**
30: * Compatibility layer - PreloadItem used by modules to define preload event listeners
31: *
32: * @category Xoops\Core\PreloadItem
33: * @package Xoops\Core
34: * @author trabis <lusopoemas@gmail.com>
35: * @copyright 2013 XOOPS Project (http://xoops.org)
36: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
37: * @version Release: 1.0
38: * @link http://xoops.org
39: * @since 1.0
40: */
41: class XoopsPreloadItem extends \Xoops\Core\PreloadItem
42: {
43: }
44: