FundacionLQDVI_WebCongresos/www/administrator/components/com_sql2excel/elements/parmheading.php

27 lines
692 B
PHP

<?php
/*
* @component SQL 2 Excel Component
* @copyright Copyright (C) Joomla-R-Us, joomla-r-us.com
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
*/
defined('_JEXEC') or die();
class JElementParmheading extends JElement
{
var $_name = 'Parmheading';
function fetchTooltip($label, $description, &$node, $control_name, $name) {
return '&nbsp;';
}
function fetchElement($name, $value, &$node, $control_name)
{
if ($value) {
return '<p style="border-top: dotted #CCC;border-top-width: 1px;border-bottom: dotted #CCC;border-bottom-width: 1px;color: #0069CC;padding:5px"><strong>' . JText::_($value) . '</strong></p>';
} else {
return '<hr />';
}
}
}
?>