Skip to content

Commit

Permalink
Rename vendor from PLUSPOL interactive GbR (Ppi) into TemplaVoilaPlus…
Browse files Browse the repository at this point in the history
… (Tvp)
  • Loading branch information
Alexander Opitz committed Dec 19, 2020
1 parent 38dcbb1 commit 847693f
Show file tree
Hide file tree
Showing 125 changed files with 438 additions and 439 deletions.
6 changes: 3 additions & 3 deletions Classes/Command/UnusedContentElementCommand8.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Ppi\TemplaVoilaPlus\Command;
namespace Tvp\TemplaVoilaPlus\Command;

/*
* This file is part of the TYPO3 CMS project.
Expand Down Expand Up @@ -28,7 +28,7 @@
use TYPO3\CMS\Core\DataHandling\DataHandler;
use TYPO3\CMS\Backend\Utility\BackendUtility;

use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

/**
* Cleaner module: Finding unused content elements on pages.
Expand Down Expand Up @@ -114,7 +114,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$dryRun = $input->hasOption('dry-run') && $input->getOption('dry-run') != false ? true : false;

// Initialize TemplaVoila API class:
$this->apiService = GeneralUtility::makeInstance(\Ppi\TemplaVoilaPlus\Service\ApiService::class, 'pages');
$this->apiService = GeneralUtility::makeInstance(\Tvp\TemplaVoilaPlus\Service\ApiService::class, 'pages');

$unusedCes = $this->findAllUnusedCes($io, $startingPoint, $depth, $excludePageIdList);

Expand Down
34 changes: 17 additions & 17 deletions Classes/Configuration/BackendConfiguration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Configuration;
namespace Tvp\TemplaVoilaPlus\Configuration;

/*
* This file is part of the TYPO3 CMS project.
Expand Down Expand Up @@ -59,26 +59,26 @@ public function initDefaults()

public function initDefaults8()
{
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_DEFAULT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_LINK, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeLinkHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SHORTCUT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeShortcutHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_BE_USER_SECTION, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_MOUNTPOINT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeMountpointHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SPACER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSpacerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SYSFOLDER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSysfolderHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_RECYCLER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeRecyclerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_DEFAULT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_LINK, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeLinkHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SHORTCUT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeShortcutHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_BE_USER_SECTION, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_MOUNTPOINT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeMountpointHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SPACER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSpacerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SYSFOLDER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSysfolderHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_RECYCLER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeRecyclerHandler::class);
}

public function initDefaults10()
{
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_DEFAULT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_LINK, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeLinkHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SHORTCUT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeShortcutHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_BE_USER_SECTION, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_MOUNTPOINT, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeMountpointHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SPACER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSpacerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SYSFOLDER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSysfolderHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_RECYCLER, \Ppi\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeRecyclerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_DEFAULT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_LINK, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeLinkHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SHORTCUT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeShortcutHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_BE_USER_SECTION, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeDefaultHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_MOUNTPOINT, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeMountpointHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SPACER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSpacerHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_SYSFOLDER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeSysfolderHandler::class);
$this->setItem(self::HANDLER_DOCTYPE, \TYPO3\CMS\Core\Domain\Repository\PageRepository::DOKTYPE_RECYCLER, \Tvp\TemplaVoilaPlus\Controller\Backend\Handler\DoktypeRecyclerHandler::class);
}

public function setItem($type, $key, $value)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Configuration\FlexForm;
namespace Tvp\TemplaVoilaPlus\Configuration\FlexForm;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -19,9 +19,9 @@
use TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction;
use TYPO3\CMS\Core\Utility\GeneralUtility;

use Ppi\TemplaVoilaPlus\Domain\Model\DataStructure;
use Ppi\TemplaVoilaPlus\Domain\Model\MappingConfiguration;
use Ppi\TemplaVoilaPlus\Utility\ApiHelperUtility;
use Tvp\TemplaVoilaPlus\Domain\Model\DataStructure;
use Tvp\TemplaVoilaPlus\Domain\Model\MappingConfiguration;
use Tvp\TemplaVoilaPlus\Utility\ApiHelperUtility;

class DataStructureIdentifierHook
{
Expand Down
4 changes: 2 additions & 2 deletions Classes/Configuration/FlexForm/FlexFormTools8.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Configuration\FlexForm;
namespace Tvp\TemplaVoilaPlus\Configuration\FlexForm;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -27,7 +27,7 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Core\Utility\MathUtility;

use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

/**
* Contains functions for manipulating flex form data
Expand Down
2 changes: 1 addition & 1 deletion Classes/ContextMenu/ItemProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Ppi\TemplaVoilaPlus\ContextMenu;
namespace Tvp\TemplaVoilaPlus\ContextMenu;

/*
* This file is part of the TYPO3 CMS project.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\ControlCenter;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\ControlCenter;

/*
* This file is part of the TYPO3 CMS project.
Expand Down Expand Up @@ -30,10 +30,10 @@
use TYPO3\CMS\Form\Service\TranslationService;


use Ppi\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Ppi\TemplaVoilaPlus\Domain\Model\DataStructure;
use Ppi\TemplaVoilaPlus\Service\ConfigurationService;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Tvp\TemplaVoilaPlus\Domain\Model\DataStructure;
use Tvp\TemplaVoilaPlus\Service\ConfigurationService;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class DataStructuresController extends FormEditorController
{
Expand Down Expand Up @@ -76,7 +76,7 @@ public function listAction()
$placesService = $configurationService->getPlacesService();

$dataStructurePlaces = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlaces($dataStructurePlaces);
$dataStructurePlacesByScope = $placesService->reorderPlacesByScope($dataStructurePlaces);
Expand Down Expand Up @@ -107,7 +107,7 @@ public function editAction($placeIdentifier, $configurationIdentifier)

$dataStructurePlace = $placesService->getPlace(
$placeIdentifier,
\Ppi\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlace($dataStructurePlace);
$dataStructure = $dataStructurePlace->getConfiguration($configurationIdentifier);
Expand Down Expand Up @@ -490,7 +490,7 @@ public function deleteAction($placeIdentifier, $configurationIdentifier)

$dataStructurePlace = $placesService->getPlace(
$placeIdentifier,
\Ppi\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlace($dataStructurePlace);
// get the LoadSave Handler
Expand Down
10 changes: 5 additions & 5 deletions Classes/Controller/Backend/ControlCenter/MappingsController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\ControlCenter;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\ControlCenter;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -23,9 +23,9 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

use Ppi\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Ppi\TemplaVoilaPlus\Service\ConfigurationService;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Tvp\TemplaVoilaPlus\Service\ConfigurationService;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class MappingsController extends ActionController
{
Expand Down Expand Up @@ -60,7 +60,7 @@ public function listAction()
$placesService = $configurationService->getPlacesService();

$mappingPlaces = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\MappingConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\MappingConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlaces($mappingPlaces);
$mappingPlacesByScope = $placesService->reorderPlacesByScope($mappingPlaces);
Expand Down
12 changes: 6 additions & 6 deletions Classes/Controller/Backend/ControlCenter/TemplatesController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\ControlCenter;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\ControlCenter;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -23,9 +23,9 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

use Ppi\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Ppi\TemplaVoilaPlus\Service\ConfigurationService;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Tvp\TemplaVoilaPlus\Service\ConfigurationService;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class TemplatesController extends ActionController
{
Expand Down Expand Up @@ -60,7 +60,7 @@ public function listAction()
$placesService = $configurationService->getPlacesService();

$templatePlace = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlaces($templatePlace);
$templatePlacesByScope = $placesService->reorderPlacesByScope($templatePlace);
Expand Down Expand Up @@ -90,7 +90,7 @@ public function infoAction($placeIdentifier, $configurationIdentifier)

$templatePlace = $placesService->getPlace(
$placeIdentifier,
\Ppi\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
);
$placesService->loadConfigurationsByPlace($templatePlace);
$templateConfiguration = $templatePlace->getConfiguration($configurationIdentifier);
Expand Down
16 changes: 8 additions & 8 deletions Classes/Controller/Backend/ControlCenterController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend;
namespace Tvp\TemplaVoilaPlus\Controller\Backend;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -24,10 +24,10 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

use Ppi\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Ppi\TemplaVoilaPlus\Service\ConfigurationService;
use Ppi\TemplaVoilaPlus\Service\PlacesService;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Configuration\BackendConfiguration;
use Tvp\TemplaVoilaPlus\Service\ConfigurationService;
use Tvp\TemplaVoilaPlus\Service\PlacesService;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class ControlCenterController extends ActionController
{
Expand Down Expand Up @@ -88,13 +88,13 @@ public function showAction()
$placesService = $configurationService->getPlacesService();

$dataStructurePlaces = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\DataStructureConfigurationHandler::$identifier
);
$mappingPlaces = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\MappingConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\MappingConfigurationHandler::$identifier
);
$templatePlaces = $placesService->getAvailablePlacesUsingConfigurationHandlerIdentifier(
\Ppi\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
\Tvp\TemplaVoilaPlus\Handler\Configuration\TemplateConfigurationHandler::$identifier
);

$this->view->assign('pageTitle', 'TemplaVoilà! Plus - Control Center');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Ppi\TemplaVoilaPlus\Controller\Backend;
namespace Tvp\TemplaVoilaPlus\Controller\Backend;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -16,7 +16,7 @@

use TYPO3\CMS\Core\Utility\GeneralUtility;

use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

/**
* Managing all possible update scripts inside TemplaVoilà
Expand Down
12 changes: 6 additions & 6 deletions Classes/Controller/Backend/Handler/DoktypeDefaultHandler.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\Handler;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\Handler;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -20,11 +20,11 @@
use TYPO3\CMS\Core\Messaging\FlashMessage;
use TYPO3\CMS\Core\Utility\GeneralUtility;

use Ppi\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Ppi\TemplaVoilaPlus\Service\ApiService;
use Ppi\TemplaVoilaPlus\Service\ConfigurationService;
use Ppi\TemplaVoilaPlus\Utility\ApiHelperUtility;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Tvp\TemplaVoilaPlus\Service\ApiService;
use Tvp\TemplaVoilaPlus\Service\ConfigurationService;
use Tvp\TemplaVoilaPlus\Utility\ApiHelperUtility;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Service\ProcessingService;

class DoktypeDefaultHandler
Expand Down
6 changes: 3 additions & 3 deletions Classes/Controller/Backend/Handler/DoktypeLinkHandler.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\Handler;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\Handler;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -19,8 +19,8 @@
use TYPO3\CMS\Core\Imaging\Icon;
use TYPO3\CMS\Core\Messaging\FlashMessage;

use Ppi\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class DoktypeLinkHandler
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\Handler;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\Handler;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -19,8 +19,8 @@
use TYPO3\CMS\Core\Imaging\Icon;
use TYPO3\CMS\Core\Messaging\FlashMessage;

use Ppi\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class DoktypeMountpointHandler
{
Expand Down
6 changes: 3 additions & 3 deletions Classes/Controller/Backend/Handler/DoktypeRecyclerHandler.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\Handler;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\Handler;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -19,8 +19,8 @@
use TYPO3\CMS\Core\Imaging\Icon;
use TYPO3\CMS\Core\Messaging\FlashMessage;

use Ppi\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class DoktypeRecyclerHandler
{
Expand Down
6 changes: 3 additions & 3 deletions Classes/Controller/Backend/Handler/DoktypeShortcutHandler.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
namespace Ppi\TemplaVoilaPlus\Controller\Backend\Handler;
namespace Tvp\TemplaVoilaPlus\Controller\Backend\Handler;

/*
* This file is part of the TYPO3 CMS project.
Expand All @@ -21,8 +21,8 @@
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Frontend\Page\PageRepository;

use Ppi\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Ppi\TemplaVoilaPlus\Utility\TemplaVoilaUtility;
use Tvp\TemplaVoilaPlus\Controller\Backend\PageLayoutController;
use Tvp\TemplaVoilaPlus\Utility\TemplaVoilaUtility;

class DoktypeShortcutHandler
{
Expand Down
Loading

0 comments on commit 847693f

Please sign in to comment.