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: use Xoops\Core\FixedGroups;
13:
14: /**
15: * XoopsTheme component class file
16: *
17: * @copyright XOOPS Project (http://xoops.org)
18: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
19: * @author Skalpa Keo <skalpa@xoops.org>
20: * @author Taiwen Jiang <phppp@users.sourceforge.net>
21: * @since 2.3.0
22: * @package class
23: * @version $Id$
24: */
25:
26: /**
27: * XoopsThemeFactory
28: *
29: * @author Skalpa Keo
30: * @since 2.3.0
31: */
32: class XoopsThemeFactory extends \Xoops\Core\Theme\Factory
33: {
34: }
35:
36: /**
37: * XoopsAdminThemeFactory
38: *
39: * @author Andricq Nicolas (AKA MusS)
40: * @author trabis
41: * @since 2.4.0
42: */
43: class XoopsAdminThemeFactory extends \Xoops\Core\Theme\AdminFactory
44: {
45: }
46:
47: class XoopsTheme extends \Xoops\Core\Theme\XoopsTheme
48: {
49: }
50:
51: abstract class XoopsThemePlugin extends \Xoops\Core\Theme\PluginAbstract
52: {
53: }
54: