PHP Classes

File: htdocs/class/smarty/xoops_plugins/compiler.xoModuleIcons16.php

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   htdocs/class/smarty/xoops_plugins/compiler.xoModuleIcons16.php   Download  
File: htdocs/class/smarty/xoops_plugins/compiler.xoModuleIcons16.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 6 years ago
Size: 1,486 bytes
 

Contents

Class file image Download
<?php
/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
 * xoModuleIcons16 Smarty compiler plug-in
 *
 * @copyright (c) 2000-2016 XOOPS Project (www.xoops.org)
 * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
 * @author Andricq Nicolas (AKA MusS)
 * @since 2.5.2
 * @param $argStr
 * @param $smarty
 * @return string
 */

function smarty_compiler_xoModuleIcons16($argStr, &$smarty)
{
    global
$xoops, $xoTheme;

   
// $icons = xoops_getModuleOption('typeicons', 'system');
    // if ( $icons == '' ) $icons = 'default';

   
if (file_exists($xoops->path('Frameworks/moduleclasses/icons/16/index.html'))) {
       
$url = $xoops->url('Frameworks/moduleclasses/icons/16/' . $argStr);
    } else {
        if (
file_exists($xoops->path('modules/system/images/icons/default/' . $argStr))) {
           
$url = $xoops->url('modules/system/images/icons/default/' . $argStr);
        } else {
           
$url = $xoops->url('modules/system/images/icons/default/xoops/xoops.png');
        }
    }

    return
"\necho '" . addslashes($url) . "';";
}