Current Directory: /home/astoriaah/www/old15/administrator/components/com_foxcontact/models/fields
Viewing File: /home/astoriaah/www/old15/administrator/components/com_foxcontact/models/fields/fheader.php
<?php defined("_JEXEC") or die(file_get_contents("index.html"));
/**
* @package Fox Contact for Joomla
* @copyright Copyright (c) 2010 - 2014 Demis Palma. All rights reserved.
* @license Distributed under the terms of the GNU General Public License GNU/GPL v3 http://www.gnu.org/licenses/gpl-3.0.html
* @see Documentation: http://www.fox.ra.it/forum/2-documentation.html
*/
jimport('joomla.html.html');
jimport('joomla.form.formfield');
class JFormFieldFHeader extends JFormField
{
protected $type = 'FHeader';
protected function getInput()
{
return '';
}
protected function getLabel()
{
$cn = basename(realpath(dirname(__FILE__) . '/../..'));
$direction = intval(JFactory::getLanguage()->get('rtl', 0));
$left = $direction ? "right" : "left";
$right = $direction ? "left" : "right";
echo '<div class="clr"></div>';
$image = '';
$icon = (string)$this->element['icon'];
if (!empty($icon))
{
$image .= '<img style="margin:0; float:' . $left . ';" src="' . JUri::base() . '../media/' . $cn . '/images/' . $icon . '">';
}
$helpurl = (string)$this->element['helpurl'];
if (!empty($helpurl))
{
$image .= '<a href="' . $helpurl . '" target="_blank"><img style="margin:0; float:' . $right . ';" src="' . JUri::base() . '../media/' . $cn . '/images/question-button-16.png"></a>';
}
$style = 'background:#f4f4f4; color:#025a8d; border:1px solid silver; padding:5px; margin:5px 0;';
if ($this->element['default'])
{
return '<div style="' . $style . '">' .
$image .
'<span style="padding-' . $left . ':5px; font-weight:bold; line-height:16px;">' .
JText::_($this->element['default']) .
'</span>' .
'</div>';
}
else
{
return parent::getLabel();
}
echo '<div class="clr"></div>';
}
}
?>