uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
07d6c
/
..
/
plugins
/
system
/
web357framework
/
elements
/
jedreview.php
/
/
<?php /* ====================================================== # Web357 Framework for Joomla! - v2.0.0 (free version) # ------------------------------------------------------- # For Joomla! CMS (v4.x) # Author: Web357 (Yiannis Christodoulou) # Copyright: (©) 2014-2024 Web357. All rights reserved. # License: GNU/GPLv3, https://www.gnu.org/licenses/gpl-3.0.html # Website: https://www.web357.com # Support: support@web357.com # Last modified: Monday 27 October 2025, 03:04:38 PM ========================================================= */ defined('JPATH_BASE') or die; use Joomla\CMS\Form\FormField; use Joomla\CMS\Language\Text; class JFormFieldjedreview extends FormField { protected $name = 'jedreview'; function getInput() { if (version_compare(JVERSION, '4.0', '>=')) { return $this->getInput_J4(); } else { return $this->getInput_J3(); } } function getLabel() { if (version_compare(JVERSION, '4.0', '>=')) { return $this->getLabel_J4(); } else { return $this->getLabel_J3(); } } function getInput_J4() { $html = ''; $html .= sprintf(Text::_('W357FRM_ASK_FOR_JED_REVIEW'), $this->element['jed_url'], Text::_($this->element['real_name'])); return $html; } function getLabel_J4() { return Text::_('W357FRM_HEADER_JED_REVIEW_AND_RATING'); } protected function getInput_J3() { return ''; } protected function getLabel_J3() { $html = ''; if (!empty($this->element['jed_url'])) { if (version_compare( JVERSION, "2.5", "<=")) { // j25 $html .= '<div class="w357frm_leave_review_on_jed" style="clear:both;padding-top:20px;">'.sprintf(Text::_('W357FRM_LEAVE_REVIEW_ON_JED'), $this->element['jed_url'], Text::_($this->element['real_name'])).'</div>'; } else { // j3x $html .= '<div class="w357frm_leave_review_on_jed">'.sprintf(Text::_('W357FRM_LEAVE_REVIEW_ON_JED'), $this->element['jed_url'], Text::_($this->element['real_name'])).'</div>'; } } return $html; } }
/home/opticamezl/www/newok/07d6c/../plugins/system/web357framework/elements/jedreview.php