You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
3.8 KiB
140 lines
3.8 KiB
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_foos
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
namespace FooNamespace\Component\Foos\Administrator\View\Foo;
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
use Joomla\CMS\Helper\ContentHelper;
|
|
use Joomla\CMS\Language\Associations;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
|
|
use Joomla\CMS\Toolbar\ToolbarHelper;
|
|
|
|
/**
|
|
* View to edit a foo.
|
|
*
|
|
* @since __BUMP_VERSION__
|
|
*/
|
|
class HtmlView extends BaseHtmlView
|
|
{
|
|
/**
|
|
* The \JForm object
|
|
*
|
|
* @var \JForm
|
|
*/
|
|
protected $form;
|
|
|
|
/**
|
|
* The active item
|
|
*
|
|
* @var object
|
|
*/
|
|
protected $item;
|
|
|
|
/**
|
|
* Display the view.
|
|
*
|
|
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
|
|
*
|
|
* @return mixed A string if successful, otherwise an Error object.
|
|
*/
|
|
public function display($tpl = null)
|
|
{
|
|
$this->form = $this->get('Form');
|
|
$this->item = $this->get('Item');
|
|
|
|
// If we are forcing a language in modal (used for associations).
|
|
if ($this->getLayout() === 'modal' && $forcedLanguage = Factory::getApplication()->input->get('forcedLanguage', '', 'cmd')) {
|
|
// Set the language field to the forcedLanguage and disable changing it.
|
|
$this->form->setValue('language', null, $forcedLanguage);
|
|
$this->form->setFieldAttribute('language', 'readonly', 'true');
|
|
|
|
// Only allow to select categories with All language or with the forced language.
|
|
$this->form->setFieldAttribute('catid', 'language', '*,' . $forcedLanguage);
|
|
}
|
|
|
|
$this->addToolbar();
|
|
|
|
return parent::display($tpl);
|
|
}
|
|
|
|
/**
|
|
* Add the page title and toolbar.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since __BUMP_VERSION__
|
|
*/
|
|
protected function addToolbar()
|
|
{
|
|
Factory::getApplication()->input->set('hidemainmenu', true);
|
|
|
|
$user = Factory::getUser();
|
|
$userId = $user->id;
|
|
|
|
$isNew = ($this->item->id == 0);
|
|
|
|
ToolbarHelper::title($isNew ? Text::_('COM_FOOS_MANAGER_FOO_NEW') : Text::_('COM_FOOS_MANAGER_FOO_EDIT'), 'address foo');
|
|
|
|
// Since we don't track these assets at the item level, use the category id.
|
|
$canDo = ContentHelper::getActions('com_foos', 'category', $this->item->catid);
|
|
|
|
// Build the actions for new and existing records.
|
|
if ($isNew) {
|
|
// For new records, check the create permission.
|
|
if ($isNew && (count($user->getAuthorisedCategories('com_foos', 'core.create')) > 0)) {
|
|
ToolbarHelper::apply('foo.apply');
|
|
ToolbarHelper::saveGroup(
|
|
[
|
|
['save', 'foo.save'],
|
|
['save2new', 'foo.save2new']
|
|
],
|
|
'btn-success'
|
|
);
|
|
}
|
|
|
|
ToolbarHelper::cancel('foo.cancel');
|
|
} else {
|
|
// Since it's an existing record, check the edit permission, or fall back to edit own if the owner.
|
|
$itemEditable = $canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_by == $userId);
|
|
$toolbarButtons = [];
|
|
|
|
// Can't save the record if it's not editable
|
|
if ($itemEditable) {
|
|
ToolbarHelper::apply('foo.apply');
|
|
$toolbarButtons[] = ['save', 'foo.save'];
|
|
|
|
// We can save this record, but check the create permission to see if we can return to make a new one.
|
|
if ($canDo->get('core.create')) {
|
|
$toolbarButtons[] = ['save2new', 'foo.save2new'];
|
|
}
|
|
}
|
|
|
|
// If checked out, we can still save
|
|
if ($canDo->get('core.create')) {
|
|
$toolbarButtons[] = ['save2copy', 'foo.save2copy'];
|
|
}
|
|
|
|
ToolbarHelper::saveGroup(
|
|
$toolbarButtons,
|
|
'btn-success'
|
|
);
|
|
|
|
if (Associations::isEnabled() && ComponentHelper::isEnabled('com_associations')) {
|
|
ToolbarHelper::custom('foo.editAssociations', 'contract', 'contract', 'JTOOLBAR_ASSOCIATIONS', false, false);
|
|
}
|
|
|
|
ToolbarHelper::cancel('foo.cancel', 'JTOOLBAR_CLOSE');
|
|
}
|
|
}
|
|
}
|