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: * xoAdminNav 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
18: * @param $argStr
19: * @param $smarty
20: * @return string
21: */
22:
23: function smarty_compiler_xoAdminNav($argStr, &$smarty)
24: {
25: global $xoops, $xoTheme;
26:
27: $icons = xoops_getModuleOption('typebreadcrumb', 'system');
28: if ($icons == '') {
29: $icons = 'default';
30: }
31:
32: if (file_exists($xoops->path('modules/system/images/breadcrumb/' . $icons . '/index.html'))) {
33: $url = $xoops->url('modules/system/images/breadcrumb/' . $icons . '/' . $argStr);
34: } else {
35: if (file_exists($xoops->path('modules/system/images/breadcrumb/default/' . $argStr))) {
36: $url = $xoops->url('modules/system/images/icons/default/' . $argStr);
37: }
38: }
39:
40: return "\necho '" . addslashes($url) . "';";
41: }
42: