| 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/plugins/djmediatools/easyblog/fields/ |
Upload File : |
<?php
/**
* @version $Id$
* @package DJ-Suggester
* @copyright Copyright (C) 2017 DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
* @developer Szymon Woronowski - szymon.woronowski@design-joomla.eu
*
* DJ-Suggester is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DJ-Suggester is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DJ-Suggester. If not, see <http://www.gnu.org/licenses/>.
*
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.html.html');
jimport('joomla.form.formfield');
jimport( 'joomla.filesystem.file' );
class JFormFieldEasyblogCategories extends JFormField
{
protected $type = 'EasyblogCategories';
protected function getInput()
{
$eb5 = true;
$engine = JPath::clean(JPATH_ADMINISTRATOR . '/components/com_easyblog/includes/easyblog.php');
if (!JFile::exists($engine)) {
if(!JFile::exists(JPATH_ROOT . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_easyblog' . DIRECTORY_SEPARATOR . 'constants.php')){
return JText::_('PLG_DJMEDIATOOLS_EASYBLOG_COMPONENT_DISABLED');
}
$eb5 = false;
require_once( JPATH_ROOT . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_easyblog' . DIRECTORY_SEPARATOR . 'constants.php' );
require_once( EBLOG_HELPERS . DIRECTORY_SEPARATOR . 'helper.php' );
require_once( JPATH_ROOT . DIRECTORY_SEPARATOR . 'administrator' . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_easyblog' . DIRECTORY_SEPARATOR . 'models' . DIRECTORY_SEPARATOR . 'categories.php' );
$model = new EasyBlogModelCategories();
} else {
require_once($engine);
$model = EB::model('Category');
}
$app = JFactory::getApplication();
JFactory::getLanguage()->load( 'com_easyblog' , JPATH_ROOT );
$categories = $model->getAllCategories();
if( !is_array( $this->value ) )
{
$this->value = array( $this->value );
}
ob_start();
?>
<select name="<?php echo $this->name;?>[]" multiple="multiple" style="width:220px;height:200px;" class="<?php echo $this->element['class'];?>">
<?php $selected = in_array( 'all' , $this->value ) ? ' selected="selected"' : ''; ?>
<option value="all"<?php echo $selected;?>><?php echo JText::_('COM_EASYBLOG_ALL_CATEGORIES'); ?></option>
<?php
foreach($categories as $category)
{
$selected = in_array( $category->id , $this->value ) ? ' selected="selected"' : '';
?>
<option value="<?php echo $category->id;?>"<?php echo $selected;?>><?php echo $category->title;?></option>
<?php
}
?>
</select>
<?php
$html = ob_get_contents();
ob_end_clean();
return $html;
}
}