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\Theme;
13:
14: /**
15: * XoopsTheme component class file
16: *
17: * @category Xoops\Core
18: * @package Theme
19: * @author Skalpa Keo <skalpa@xoops.org>
20: * @author Taiwen Jiang <phppp@users.sourceforge.net>
21: * @copyright 2008-2015 XOOPS Project (http://xoops.org)
22: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
23: * @link http://xoops.org
24: */
25: abstract class PluginAbstract
26: {
27: /**
28: * @var XoopsTheme
29: */
30: public $theme = false;
31:
32: /**
33: * initialize the plugin
34: *
35: * @return bool
36: */
37: abstract public function xoInit();
38: }
39: