Your IP : 10.10.0.253


Current Path : /var/www/administrator/components/com_jcomments/views/comments/
Upload File :
Current File : /var/www/administrator/components/com_jcomments/views/comments/view.html.php

<?php
/**
 * JComments - Joomla Comment System
 *
 * @version 3.0
 * @package JComments
 * @author Sergey M. Litvinov (smart@joomlatune.ru)
 * @copyright (C) 2006-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
 * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
 */

defined('_JEXEC') or die;

class JCommentsViewComments extends JCommentsViewLegacy
{
	protected $items;
	protected $pagination;
	protected $state;

	function display($tpl = null)
	{
		require_once JPATH_COMPONENT . '/helpers/jcomments.php';

		$this->items = $this->get('Items');
		$this->pagination = $this->get('Pagination');
		$this->state = $this->get('State');

		$filter_object_group = $this->state->get('filter.object_group');
		$filter_language = $this->state->get('filter.language');
		$filter_state = $this->state->get('filter.state');

		// Filter by published state
		$filter_state_options = array();
		$filter_state_options[] = JHTML::_('select.option', '1', JText::_('A_FILTER_STATE_PUBLISHED'));
		$filter_state_options[] = JHTML::_('select.option', '0', JText::_('A_FILTER_STATE_UNPUBLISHED'));
		$filter_state_options[] = JHTML::_('select.option', '2', JText::_('A_FILTER_STATE_REPORTED'));

		// Filter by component (object_group)
		$filter_object_group_options = array();
		$object_groups = $this->get('FilterObjectGroups');
		foreach ($object_groups as $object_group) {
			$filter_object_group_options[] = JHTML::_('select.option', $object_group->name, $object_group->name);
		}

		// Filter by language
		$filter_language_options = array();
		$languages = $this->get('FilterLanguages');
		foreach ($languages as $language) {
			$filter_language_options[] = JHTML::_('select.option', $language->name, $language->name);
		}

		JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

		JHtml::_('jcomments.stylesheet');

		if (version_compare(JVERSION, '3.0', 'ge')) {
			JHtml::_('bootstrap.tooltip');
			JHtml::_('formbehavior.chosen', 'select');

			JCommentsHelper::addSubmenu('comments');

			JHtmlSidebar::setAction('index.php?option=com_jcomments&view=comments');
			JHtmlSidebar::addFilter(
				JText::_('A_FILTER_STATE'),
				'filter_state',
				JHtml::_('select.options', $filter_state_options, 'value', 'text', $filter_state, true)
			);

			if (count($filter_object_group_options)) {
				JHtmlSidebar::addFilter(
					JText::_('A_FILTER_COMPONENT'),
					'filter_object_group',
					JHtml::_('select.options', $filter_object_group_options, 'value', 'text', $filter_object_group, true)
				);
			}

			if (count($filter_language_options)) {
				JHtmlSidebar::addFilter(
					JText::_('A_FILTER_LANGUAGE'),
					'filter_language',
					JHtml::_('select.options', $filter_language_options, 'value', 'text', $filter_language, true)
				);
			}

			$this->bootstrap = true;
			$this->sidebar = JHtmlSidebar::render();
		} else {
			JCommentsHelper::addSubmenu('comments');

			$filter = '';

			array_unshift($filter_state_options, JHTML::_('select.option', '', JText::_('A_FILTER_STATE')));
			$filter .= JHTML::_('select.genericlist', $filter_state_options, 'filter_state', 'onchange="Joomla.submitform();"', 'value', 'text', $filter_state);

			if (count($filter_object_group_options)) {
				array_unshift($filter_object_group_options, JHTML::_('select.option', '', JText::_('A_FILTER_COMPONENT')));
				$filter .= ' ' . JHTML::_('select.genericlist', $filter_object_group_options, 'filter_object_group', 'onchange="Joomla.submitform();"', 'value', 'text', $filter_object_group);
			}

			if (count($filter_language_options)) {
				array_unshift($filter_language_options, JHTML::_('select.option', '', JText::_('A_FILTER_LANGUAGE')));
				$filter .= ' ' . JHTML::_('select.genericlist', $filter_language_options, 'filter_language', 'onchange="Joomla.submitform();"', 'value', 'text', $filter_language);
			}

			$this->assignRef('filter', $filter);
		}

		$this->addToolbar();

		parent::display($tpl);
	}

	protected function addToolbar()
	{
		$canDo = JCommentsHelper::getActions();

		JToolBarHelper::title(JText::_('A_SUBMENU_COMMENTS'), 'jcomments-comments');

		if (($canDo->get('core.edit'))) {
			JToolBarHelper::editList('comment.edit');
		}

		if ($canDo->get('core.edit.state')) {
			JToolBarHelper::publishList('comments.publish');
			JToolBarHelper::unpublishList('comments.unpublish');
			JToolbarHelper::checkin('comments.checkin');
		}

		if (($canDo->get('core.delete'))) {
			JToolBarHelper::deletelist('', 'comments.delete');
		}

		JToolBarHelper::divider();

		$bar = JToolBar::getInstance('toolbar');
		$bar->appendButton('Popup', 'refresh', 'A_REFRESH_OBJECTS_INFO',
			'index.php?option=com_jcomments&amp;task=objects.refresh&amp;tmpl=component',
			500, 210, null, null, 'window.location.reload();', 'A_COMMENTS');
	}

	protected function getSortFields()
	{
		return array(
			'jc.published' => JText::_('JSTATUS'),
			'jc.title' => JText::_('A_COMMENT_TITLE'),
			'jc.name' => JText::_('A_COMMENT_NAME'),
			'jc.object_group' => JText::_('A_COMPONENT'),
			'jo.title' => JText::_('A_COMMENT_OBJECT_TITLE'),
			'jc.date' => JText::_('A_COMMENT_DATE'),
			'jc.id' => JText::_('JGRID_HEADING_ID')
		);
	}
}