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: * xoModuleIcons32 Smarty compiler plug-in
13: *
14: * @copyright (c) 2000-2016 XOOPS Project (www.xoops.org)
15: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
16: * @author Andricq Nicolas (AKA MusS)
17: * @since 2.5.2
18: * @param $argStr
19: * @param $smarty
20: * @return string
21: */
22:
23: function smarty_compiler_xoModuleIcons32($argStr, &$smarty)
24: {
25: global $xoops, $xoTheme;
26:
27: if (file_exists($xoops->path('Frameworks/moduleclasses/icons/32/index.html'))) {
28: $url = $xoops->url('Frameworks/moduleclasses/icons/32/' . $argStr);
29: } else {
30: if (file_exists($xoops->path('modules/system/images/icons/default/' . $argStr))) {
31: $url = $xoops->url('modules/system/images/icons/default/' . $argStr);
32: } else {
33: $url = $xoops->url('modules/system/images/icons/default/xoops/xoops.png');
34: }
35: }
36:
37: return "\necho '" . addslashes($url) . "';";
38: }
39: