| Current Path : /var/www/html/administrator/components/com_community/views/digest/ |
| Current File : /var/www/html/administrator/components/com_community/views/digest/view.html.php |
<?php
/**
* @copyright (C) 2013 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Toolbar\Toolbar;
use Joomla\CMS\Toolbar\ToolbarHelper;
// Disallow direct access to this file
defined('_JEXEC') or die('Restricted access');
jimport( 'joomla.application.component.view' );
require_once( JPATH_ROOT . '/components/com_community/libraries/core.php' );
require_once( JPATH_ROOT . '/components/com_community/libraries/profile.php' );
/**
* Configuration view for JomSocial
*/
class CommunityViewDigest extends HtmlView
{
/**
* The default method that will display the output of this view which is called by
* Joomla
*
* @param string template Template file name
**/
public function display( $tpl = null )
{
if( $this->getLayout() == 'edit' )
{
$this->_displayEditLayout( $tpl );
return;
}
// Set the titlebar text
ToolbarHelper::title( Text::_('COM_COMMUNITY_DIGEST'), 'digest' );
jimport( 'joomla.html.editor' );
$editor = $editor = new CEditor('jomsocial');
$digestModel = $this->getModel();
$this->set( 'editor' , $editor );
$this->set('config', CFactory::getConfig());
$this->set('pendingList', $digestModel->getPendingList());
parent::display( $tpl );
}
public function setToolBar()
{
// Get the toolbar object instance
$bar = Toolbar::getInstance('toolbar');
$jinput = Factory::getApplication()->input;
// Set the titlebar text
ToolBarHelper::title( Text::_('COM_COMMUNITY_DIGEST'));
// Add the necessary buttons
ToolBarHelper::save( 'digest.apply', Text::_('COM_COMMUNITY_SAVE') );
}
}