| Current Path : /home/juvelize/martine/administrator/components/com_jcomments/views/smilies/ |
| Current File : /home/juvelize/martine/administrator/components/com_jcomments/views/smilies/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 JCommentsViewSmilies extends JCommentsViewLegacy
{
protected $items;
protected $pagination;
protected $state;
protected $liveSmiliesPath;
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');
$this->liveSmiliesPath = str_replace('\\', '/', JCommentsHelper::getSmiliesPath());
$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'));
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('smilies');
JHtmlSidebar::setAction('index.php?option=com_jcomments&view=smilies');
JHtmlSidebar::addFilter(
JText::_('A_FILTER_STATE'),
'filter_state',
JHtml::_('select.options', $filter_state_options, 'value', 'text', $filter_state, true)
);
$this->bootstrap = true;
$this->sidebar = JHtmlSidebar::render();
} else {
JCommentsHelper::addSubmenu('smilies');
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);
$this->assignRef('filter', $filter);
}
$this->addToolbar();
// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
parent::display($tpl);
}
protected function addToolbar()
{
$canDo = JCommentsHelper::getActions();
JToolBarHelper::title(JText::_('A_SMILIES'), 'jcomments-smilies');
if (($canDo->get('core.create'))) {
JToolBarHelper::addNew('smiley.add');
}
if (($canDo->get('core.edit'))) {
JToolBarHelper::editList('smiley.edit');
}
if ($canDo->get('core.edit.state')) {
JToolBarHelper::publishList('smilies.publish');
JToolBarHelper::unpublishList('smilies.unpublish');
JToolbarHelper::checkin('smilies.checkin');
}
if (($canDo->get('core.delete'))) {
JToolBarHelper::deletelist('', 'smilies.delete');
}
}
protected function getSortFields()
{
return array(
'js.published' => JText::_('JSTATUS'),
'js.name' => JText::_('A_SMILIES_HEADING_NAME'),
'js.ordering' => JText::_('JGRID_HEADING_ORDERING'),
'js.id' => JText::_('JGRID_HEADING_ID')
);
}
}