| Current Path : /home/smartconb/www/armencom33/administrator/components/com_eyesite/fields/ |
| Current File : /home/smartconb/www/armencom33/administrator/components/com_eyesite/fields/ladlanguages.php |
<?php
/********************************************************************
Product : Multiple Products
Date : 22 January 2024
Copyright : Les Arbres Design 2009-2024
Contact : https://www.lesarbresdesign.info
Licence : GNU General Public License
*********************************************************************/
defined('_JEXEC') or die('Restricted Access');
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
class JFormFieldLadlanguages extends ListField
{
protected $type = 'ladlanguages';
protected function getOptions()
{
$options[0] = Text::_('JDEFAULT');
// get an array of admin language files for this component
$component = $this->element['component'];
$all_dirs = glob(JPATH_ADMINISTRATOR.'/components/'.$component.'/language/*',GLOB_ONLYDIR);
foreach ($all_dirs as $dir)
{
$tag = basename($dir);
$path = $dir.'/'.$tag.'.'.$component.'.ini';
if (file_exists($path))
{
$lines = file($path);
$line = $lines[5]; // e.g. ; * Language : English (en-GB), by Les Arbres Design
if (strpos($line, 'Language'))
$title = trim(strstr($line, ':'),": \n\r\t\v\x00");
else
$title = $tag;
$options[$tag] = $title;
}
}
return $options;
}
}