121 lines
3.8 KiB
PHP
121 lines
3.8 KiB
PHP
<?php
|
|
|
|
// Check to ensure this file is included in Joomla!
|
|
defined('JPATH_PLATFORM') or die;
|
|
|
|
class JceViewProfiles extends JViewLegacy
|
|
{
|
|
protected $items;
|
|
protected $pagination;
|
|
protected $state;
|
|
|
|
protected function isEmpty()
|
|
{
|
|
// Create a new query object.
|
|
$db = JFactory::getDbo();
|
|
$query = $db->getQuery(true);
|
|
|
|
// Select the required fields from the table.
|
|
$query->select('COUNT(id)')->from($db->quoteName('#__wf_profiles'));
|
|
|
|
$db->setQuery($query);
|
|
|
|
return $db->loadResult() == 0;
|
|
}
|
|
|
|
/**
|
|
* Display the view.
|
|
*/
|
|
public function display($tpl = null)
|
|
{
|
|
$this->items = $this->get('Items');
|
|
$this->pagination = $this->get('Pagination');
|
|
$this->state = $this->get('State');
|
|
$this->filterForm = $this->get('FilterForm');
|
|
$this->activeFilters = $this->get('ActiveFilters');
|
|
|
|
$this->params = JComponentHelper::getParams('com_jce');
|
|
|
|
// Check for errors.
|
|
if (count($errors = $this->get('Errors'))) {
|
|
JError::raiseError(500, implode("\n", $errors));
|
|
|
|
return false;
|
|
}
|
|
|
|
if ($this->isEmpty()) {
|
|
$link = JHTML::link('index.php?option=com_jce&task=profiles.repair&' . JSession::getFormToken() . '=1', JText::_('WF_DB_CREATE_RESTORE'), array('class' => 'wf-profiles-repair'));
|
|
JFactory::getApplication()->enqueueMessage(JText::_('WF_DB_PROFILES_ERROR') . ' - ' . $link, 'error');
|
|
}
|
|
|
|
JHtml::_('jquery.framework');
|
|
|
|
// only in Joomla 3.x
|
|
if (version_compare(JVERSION, '4', 'lt')) {
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
}
|
|
|
|
$document = JFactory::getDocument();
|
|
$document->addScript(JURI::root(true) . '/media/com_jce/js/profiles.min.js');
|
|
$document->addStyleSheet(JURI::root(true) . '/media/com_jce/css/profiles.min.css');
|
|
|
|
$this->addToolbar();
|
|
$this->sidebar = JHtmlSidebar::render();
|
|
parent::display($tpl);
|
|
}
|
|
|
|
/**
|
|
* Add the page title and toolbar.
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
protected function addToolbar()
|
|
{
|
|
$state = $this->get('State');
|
|
$user = JFactory::getUser();
|
|
|
|
JToolbarHelper::title('JCE - ' . JText::_('WF_PROFILES'), 'users');
|
|
|
|
$bar = JToolBar::getInstance('toolbar');
|
|
|
|
if ($user->authorise('jce.profiles', 'com_jce')) {
|
|
JToolbarHelper::addNew('profile.add');
|
|
JToolbarHelper::custom('profiles.copy', 'copy', 'copy', 'WF_PROFILES_COPY', true);
|
|
|
|
// Instantiate a new JLayoutFile instance and render the layout
|
|
$layout = new JLayoutFile('toolbar.uploadprofile');
|
|
$bar->appendButton('Custom', $layout->render(array()), 'upload');
|
|
|
|
JToolbarHelper::custom('profiles.export', 'download', 'download', 'WF_PROFILES_EXPORT', true);
|
|
|
|
JToolbarHelper::publish('profiles.publish', 'JTOOLBAR_PUBLISH', true);
|
|
JToolbarHelper::unpublish('profiles.unpublish', 'JTOOLBAR_UNPUBLISH', true);
|
|
|
|
JToolbarHelper::deleteList('', 'profiles.delete', 'JTOOLBAR_DELETE');
|
|
}
|
|
|
|
JHtmlSidebar::setAction('index.php?option=com_jce&view=profiles');
|
|
|
|
if ($user->authorise('core.admin', 'com_jce')) {
|
|
JToolbarHelper::preferences('com_jce');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns an array of fields the table can be sorted by.
|
|
*
|
|
* @return array Array containing the field name to sort by as the key and display text as value
|
|
*
|
|
* @since 3.0
|
|
*/
|
|
protected function getSortFields()
|
|
{
|
|
return array(
|
|
'ordering' => JText::_('JGRID_HEADING_ORDERING'),
|
|
'name' => JText::_('JGLOBAL_TITLE'),
|
|
'published' => JText::_('JSTATUS'),
|
|
'id' => JText::_('JGRID_HEADING_ID'),
|
|
);
|
|
}
|
|
}
|