git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
27 lines
692 B
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 ' ';
|
|
}
|
|
|
|
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 />';
|
|
}
|
|
}
|
|
}
|
|
?>
|