Skip to content

Commit

Permalink
!!![TASK] Move module to own backend module
Browse files Browse the repository at this point in the history
This change moves the module from the info module to its own backend
module.

This requires changes in editor permissions: Give the editors access
to the "brofix" module.

Version is incremented to version 3.0.0-dev.
  • Loading branch information
sypets committed Mar 6, 2022
1 parent b03442f commit f30f41c
Show file tree
Hide file tree
Showing 13 changed files with 591 additions and 61 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Fluid\View\StandaloneView;
use TYPO3\CMS\Info\Controller\InfoModuleController;

abstract class AbstractInfoController
abstract class AbstractBrofixController
{
/**
* @var string
Expand All @@ -46,7 +45,7 @@ abstract class AbstractInfoController
protected $siteLanguages = [];

/**
* @var InfoModuleController Contains a reference to the parent calling object
* @var BrofixController Contains a reference to the parent calling object
*/
protected $pObj;

Expand Down Expand Up @@ -102,7 +101,7 @@ public function __construct(
* @return string
* @throws \TYPO3\CMS\Backend\Routing\Exception\RouteNotFoundException
*/
protected function constructBackendUri(array $additionalQueryParameters = [], string $route = 'web_info'): string
protected function constructBackendUri(array $additionalQueryParameters = [], string $route = 'web_brofix'): string
{
$parameters = [
'id' => $this->id,
Expand Down
Loading

0 comments on commit f30f41c

Please sign in to comment.