| Current Path : /home/digilove/www/plugins/system/nnframework/fields/ |
| Current File : //home/digilove/www/plugins/system/nnframework/fields/tags.php |
<?php
/**
* Element: Tags
* Displays a select box of backend group levels
*
* @package NoNumber Framework
* @version 14.11.6
*
* @author Peter van Westen <peter@nonumber.nl>
* @link http://www.nonumber.nl
* @copyright Copyright © 2014 NoNumber All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
require_once JPATH_PLUGINS . '/system/nnframework/helpers/text.php';
class JFormFieldNN_Tags extends JFormField
{
public $type = 'Tags';
private $params = null;
private $db = null;
protected function getInput()
{
$this->params = $this->element->attributes();
$this->db = JFactory::getDBO();
$size = (int) $this->get('size');
$attribs = 'class="inputbox"';
$options = $this->getTags();
require_once JPATH_PLUGINS . '/system/nnframework/helpers/html.php';
return nnHtml::selectlist($options, $this->name, $this->value, $this->id, $size, 1, $attribs);
}
protected function getTags()
{
// Get the user groups from the database.
$query = $this->db->getQuery(true)
->select('a.id as value, a.title as text, a.parent_id AS parent')
->from('#__tags AS a')
->select('COUNT(DISTINCT b.id) - 1 AS level')
->join('LEFT', '#__tags AS b ON a.lft > b.lft AND a.rgt < b.rgt')
->where('a.alias <> ' . $this->db->quote('root'))
->group('a.id')
->order('a.lft ASC');
$this->db->setQuery($query);
$options = $this->db->loadObjectList();
return $options;
}
private function get($val, $default = '')
{
return (isset($this->params[$val]) && (string) $this->params[$val] != '') ? (string) $this->params[$val] : $default;
}
}