| Server IP : 87.98.231.4 / Your IP : 216.73.217.37 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/plugins/system/mediabox_ck/elements/ |
Upload File : |
<?php
/**
* @copyright Copyright (C) 2015 Cedric KEIFLIN alias ced1870
* https://www.joomlack.fr
* @license GNU/GPL
* */
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.form.form');
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
// error_reporting(0);
class JFormFieldCkmediaboxvote extends \Joomla\CMS\Form\FormField {
protected $type = 'ckmediaboxvote';
protected function getLabel() {
$imgpath = \Joomla\CMS\Uri\Uri::root(true) . '/plugins/system/mediabox_ck/elements/images/';
$styles = 'background:#efefef;';
$styles .= 'border: none;';
$styles .= 'border-radius: 3px;';
$styles .= 'color: #333;';
$styles .= 'font-weight: normal;';
$styles .= 'line-height: 24px;';
$styles .= 'padding: 5px;';
$styles .= 'margin: 3px 0;';
$styles .= 'text-align: left;';
$styles .= 'text-decoration: none;';
$html = '<div style="' . $styles . '"><img src="' . $imgpath . 'emoticon_smile.png" style="margin: 0 10px 0 0;" /><a href="http://extensions.joomla.org/extensions/extension/multimedia/multimedia-display/mediabox-ck" target="_blank">' . \Joomla\CMS\Language\Text::_('MEDIABOXCK_VOTE_JED') . '</a></div>';
return $html;
}
protected function getInput() {
return '';
}
}