HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/modules/mod_latestnewsenhanced/fields/animationselect.php
<?php
/**
 * @copyright	Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved.
 * @license		GNU General Public License version 3 or later; see LICENSE.txt
*/

defined( '_JEXEC' ) or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Form\FormHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Uri\Uri;

jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');

FormHelper::loadFieldClass('dynamicsingleselect');

class JFormFieldAnimationSelect extends JFormFieldDynamicSingleSelect
{
	public $type = 'AnimationSelect';

	protected function getOptions()
	{
		$options = array();
		$options_disabled = array();

		$lang = Factory::getLanguage();

		$path = '/modules/mod_latestnewsenhanced/animations';

		$options[] = array('', Text::_('JNO'), '', Uri::root(true).'/modules/mod_latestnewsenhanced/images/select_no.png');

		$optionsArray = \JFolder::folders(JPATH_SITE.$path);

		foreach ($optionsArray as $option) {

			if ($option != 'justpagination') {

				$upper_option = strtoupper($option);

				//$lang->load('mod_latestnewsenhancedextended_animation_'.$option);

				$translated_option = Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_ANIMATION_'.$upper_option.'_LABEL');

				$description = '';
				if (empty($translated_option) || substr_count($translated_option, 'LATESTNEWSENHANCEDEXTENDED') > 0) {
					$translated_option = ucfirst($option);
				} else {
					$description = Text::_('MOD_LATESTNEWSENHANCEDEXTENDED_ANIMATION_'.$upper_option.'_DESC');
					if (substr_count($description, 'LATESTNEWSENHANCEDEXTENDED') > 0) {
						$description = '';
					}
				}

				$image_hover = '';
				if (\JFile::exists(JPATH_ROOT.$path.'/'.$option.'/'.$option.'_hover.png')) {
					$image_hover = Uri::root(true).$path.'/'.$option.'/'.$option.'_hover.png';
				}

				$badge = 'jQuery';
				if (strpos($upper_option, 'PURE') !== false) {
					$badge = 'javascript';
				}

				if (\JFile::exists(JPATH_ROOT.$path.'/'.$option.'/style.css.php')) {
					$options[] = array($option, $translated_option, $description, Uri::root(true).$path.'/'.$option.'/'.$option.'.png', $image_hover, false, $badge);
				} else {
					$options_disabled[] = array($option, $translated_option . ' (Pro)', $description, Uri::root(true).$path.'/'.$option.'/'.$option.'.png', $image_hover, true, $badge);
				}
			}
		}

		$options = array_merge($options, $options_disabled);

		return $options;
	}

	public function setup(\SimpleXMLElement $element, $value, $group = null)
	{
		$return = parent::setup($element, $value, $group);

		if ($return) {
			$this->width = 150;
			$this->maxwidth = 170;
			$this->height = 100;
		}

		return $return;
	}
}
?>