%PDF- %PDF-
| Direktori : /home1/lightco1/www/lightcolab.com/plugins/fields/list/tmpl/ |
| Current File : //home1/lightco1/www/lightcolab.com/plugins/fields/list/tmpl/list.php |
<?php
/**
* @package Joomla.Plugin
* @subpackage Fields.List
*
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$fieldValue = $field->value;
if ($fieldValue == '')
{
return;
}
$fieldValue = (array) $fieldValue;
$texts = array();
$options = $this->getOptionsFromField($field);
foreach ($options as $value => $name)
{
if (in_array((string) $value, $fieldValue))
{
$texts[] = JText::_($name);
}
}
echo htmlentities(implode(', ', $texts));