| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/brest/libraries/compojoom/form/fields/ |
Upload File : |
<?php
/**
* @package Lib_Compojoom
* @author DanielDimitrov <daniel@compojoom.com>
* @date 19.11.2014
*
* @copyright Copyright (C) 2008 - 2013 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die('Restricted access');
/**
* Class JFormFieldAvatars
*
* @since 4.0.22
*/
class JFormFieldAvatars extends JFormField
{
/**
* The form field type.
*
* @var string
*/
protected $type = 'avatars';
/**
* Create the input field
*
* @return mixed
*/
protected function getInput()
{
$attr = '';
// Initialize some field attributes.
$attr .= $this->element['class'] ? ' class="' . (string) $this->element['class'] . '"' : '';
// To avoid user's confusion, readonly="true" should imply disabled="true".
if ((string) $this->element['readonly'] == 'true' || (string) $this->element['disabled'] == 'true')
{
$attr .= ' disabled="disabled"';
}
$attr .= $this->element['size'] ? ' size="' . (int) $this->element['size'] . '"' : '';
$attr .= $this->multiple ? ' multiple="multiple"' : '';
// Initialize JavaScript field attributes.
$attr .= $this->element['onchange'] ? ' onchange="' . (string) $this->element['onchange'] . '"' : '';
$options = $this->getOptions();
return JHtml::_('select.genericlist', $options, $this->name, trim($attr), 'value', 'text', $this->value, $this->id);
}
/**
* Method to get the field options.
*
* @return array The field option objects.
*/
protected function getOptions()
{
jimport('joomla.filesystem.folder');
$options = array('0' => JText::_('LIB_COMPOJOOM_NONE'));
$components = JFolder::files(JPATH_LIBRARIES . '/compojoom/avatars/avatars');
$isPro = (int) $this->element['isPro'];
foreach ($components as $component)
{
$disabled = true;
$component = str_replace('.php', '', $component);
// Disable this option if the component is not installed, or if we are not in a PRO extension
if (CompojoomComponentHelper::isInstalled('com_' . $component) && $isPro)
{
$disabled = false;
}
$options[] = Jhtml::_('select.option', $component, JText::_('LIB_COMPOJOOM_COM_' . strtoupper($component)), 'value', 'text', $disabled);
}
return $options;
}
}