git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
116 lines
3.1 KiB
PHP
116 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: modules.php 14401 2010-01-26 14:10:00Z louis $
|
|
* @package Joomla
|
|
* @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
|
|
* @license GNU/GPL, see LICENSE.php
|
|
* Joomla! is free software. This version may have been modified pursuant
|
|
* to the GNU General Public License, and as distributed it includes or
|
|
* is derivative of works licensed under the GNU General Public License or
|
|
* other free or open source software licenses.
|
|
* See COPYRIGHT.php for copyright notices and details.
|
|
*/
|
|
|
|
// no direct access
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
/*
|
|
* none (output raw module content)
|
|
*/
|
|
function modChrome_none($module, &$params, &$attribs)
|
|
{
|
|
echo $module->content;
|
|
}
|
|
|
|
/*
|
|
* Module chrome that wraps the module in a table
|
|
*/
|
|
function modChrome_table($module, &$params, &$attribs)
|
|
{ ?>
|
|
<table cellpadding="0" cellspacing="0" class="moduletable<?php echo $params->get('moduleclass_sfx'); ?>">
|
|
<?php if ($module->showtitle != 0) : ?>
|
|
<tr>
|
|
<th valign="top">
|
|
<?php echo $module->title; ?>
|
|
</th>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td>
|
|
<?php echo $module->content; ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
}
|
|
|
|
/*
|
|
* Module chrome that wraps the tabled module output in a <td> tag of another table
|
|
*/
|
|
function modChrome_horz($module, &$params, &$attribs)
|
|
{ ?>
|
|
<table cellspacing="1" cellpadding="0" border="0" width="100%">
|
|
<tr>
|
|
<td valign="top">
|
|
<?php modChrome_table($module, $params, $attribs); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
}
|
|
|
|
/*
|
|
* xhtml (divs and font headder tags)
|
|
*/
|
|
function modChrome_xhtml($module, &$params, &$attribs)
|
|
{
|
|
if (!empty ($module->content)) : ?>
|
|
<div class="moduletable<?php echo $params->get('moduleclass_sfx'); ?>">
|
|
<?php if ($module->showtitle != 0) : ?>
|
|
<h3><?php echo $module->title; ?></h3>
|
|
<?php endif; ?>
|
|
<?php echo $module->content; ?>
|
|
</div>
|
|
<?php endif;
|
|
}
|
|
|
|
/*
|
|
* Module chrome that allows for rounded corners by wrapping in nested div tags
|
|
*/
|
|
function modChrome_rounded($module, &$params, &$attribs)
|
|
{ ?>
|
|
<div class="module<?php echo $params->get('moduleclass_sfx'); ?>">
|
|
<div>
|
|
<div>
|
|
<div>
|
|
<?php if ($module->showtitle != 0) : ?>
|
|
<h3><?php echo $module->title; ?></h3>
|
|
<?php endif; ?>
|
|
<?php echo $module->content; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/*
|
|
* Module chrome that add preview information to the module
|
|
*/
|
|
function modChrome_outline($module, &$params, &$attribs)
|
|
{
|
|
$doc =& JFactory::getDocument();
|
|
$css = ".mod-preview-info { padding: 2px 4px 2px 4px; border: 1px solid black; position: absolute; background-color: white; color: red;opacity: .80; filter: alpha(opacity=80); -moz-opactiy: .80; }";
|
|
$css .= ".mod-preview-wrapper { background-color:#eee; border: 1px dotted black; color:#700; opacity: .50; filter: alpha(opacity=50); -moz-opactiy: .50;}";
|
|
$doc->addStyleDeclaration($css);
|
|
|
|
?>
|
|
<div class="mod-preview">
|
|
<div class="mod-preview-info"><?php echo $module->position."[".$module->style."]"; ?></div>
|
|
<div class="mod-preview-wrapper">
|
|
<?php echo $module->content; ?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|