| Current Path : /var/www/html/administrator/components/com_slideshowck/elements/ |
| Current File : /var/www/html/administrator/components/com_slideshowck/elements/slideshowcktext.php |
<?php
/**
* @copyright Copyright (C) 2011-2019 Cedric KEIFLIN alias ced1870
* https://www.joomlack.fr
* @license GNU/GPL
* */
defined('_JEXEC') or die;
// custom class extension for J3 compatibility
if (class_exists('\Joomla\CMS\Form\Field\TextField')) {
class JFormFieldSlideshowcktextBase extends \Joomla\CMS\Form\Field\TextField {}
} else {
class JFormFieldSlideshowcktextBase extends JFormFieldText {}
}
class JFormFieldSlideshowcktext extends JFormFieldSlideshowcktextBase {
/**
* The form field type.
*
* @var string
*/
protected $type = 'slideshowcktext';
protected function getInput() {
// Initialize some field attributes.
$icon = $this->element['icon'];
$suffix = $this->element['suffix'];
$html = $icon ? '<div class="slideshowck-field-icon" ' . ($suffix ? 'data-has-suffix="1"' : '') . '><img src="' . SLIDESHOWCK_MEDIA_URI . '/images/' . $icon . '" style="margin-right:5px;" /></div>' : '<div class="slideshowck-field-icon"></div>';
$html .= parent::getInput();
if ($suffix)
$html .= '<span class="slideshowck-field-suffix">' . $suffix . '</span>';
return $html;
}
}