Ejemplo n.º 1
0
    public static function modoutput_rounded($module, $params, $Itemid, $moduleclass_sfx, $type = 0)
    {
        global $mosConfig_live_site, $mosConfig_sitename, $mosConfig_lang, $mosConfig_absolute_path;
        global $mainframe, $database, $my;
        ?>
		<div class="module<?php 
        echo $moduleclass_sfx;
        ?>
">
			<div>
				<div>
					<div>
						<?php 
        if ($module->showtitle != 0) {
            echo "<h3>" . htmlspecialchars($module->title) . "</h3>";
        }
        if ($type) {
            modules_html::CustomContent($module, $params);
        } else {
            include $mosConfig_absolute_path . '/modules/' . $module->module . '.php';
            if (isset($content)) {
                echo $content;
            }
        }
        ?>
					</div>
				</div>
			</div>
		</div>
		<?php 
    }