-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[4.0] Change com_templates to services (#20619)
* Change com_templates to services * Revert file * cs
- Loading branch information
Showing
6 changed files
with
133 additions
and
58 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
administrator/components/com_templates/Extension/TemplatesComponent.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
/** | ||
* @package Joomla.Administrator | ||
* @subpackage com_templates | ||
* | ||
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
|
||
namespace Joomla\Component\Templates\Administrator\Extension; | ||
|
||
defined('JPATH_PLATFORM') or die; | ||
|
||
use Joomla\CMS\Extension\BootableExtensionInterface; | ||
use Joomla\CMS\Extension\MVCComponent; | ||
use Joomla\CMS\HTML\HTMLRegistryAwareTrait; | ||
use Joomla\Component\Templates\Administrator\Service\HTML\Templates; | ||
use Psr\Container\ContainerInterface; | ||
|
||
/** | ||
* Component class for com_templates | ||
* | ||
* @since 4.0.0 | ||
*/ | ||
class TemplatesComponent extends MVCComponent implements BootableExtensionInterface | ||
{ | ||
use HTMLRegistryAwareTrait; | ||
|
||
/** | ||
* Booting the extension. This is the function to set up the environment of the extension like | ||
* registering new class loaders, etc. | ||
* | ||
* If required, some initial set up can be done from services of the container, eg. | ||
* registering HTML services. | ||
* | ||
* @param ContainerInterface $container The container | ||
* | ||
* @return void | ||
* | ||
* @since 4.0.0 | ||
*/ | ||
public function boot(ContainerInterface $container) | ||
{ | ||
$this->getRegistry()->register('templates', new Templates); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
administrator/components/com_templates/services/provider.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
/** | ||
* @package Joomla.Administrator | ||
* @subpackage com_templates | ||
* | ||
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
|
||
defined('_JEXEC') or die; | ||
|
||
use Joomla\CMS\Dispatcher\DispatcherFactoryInterface; | ||
use Joomla\CMS\Extension\ComponentInterface; | ||
use Joomla\CMS\Extension\MVCComponent; | ||
use Joomla\CMS\Extension\Service\Provider\DispatcherFactory; | ||
use Joomla\CMS\Extension\Service\Provider\MVCFactoryFactory; | ||
use Joomla\CMS\MVC\Factory\MVCFactoryFactoryInterface; | ||
use Joomla\DI\Container; | ||
use Joomla\DI\ServiceProviderInterface; | ||
|
||
/** | ||
* The templates service provider. | ||
* | ||
* @since 4.0.0 | ||
*/ | ||
return new class implements ServiceProviderInterface | ||
{ | ||
/** | ||
* Registers the service provider with a DI container. | ||
* | ||
* @param Container $container The DI container. | ||
* | ||
* @return void | ||
* | ||
* @since 4.0.0 | ||
*/ | ||
public function register(Container $container) | ||
{ | ||
$container->registerServiceProvider(new MVCFactoryFactory('\\Joomla\\Component\\Templates')); | ||
$container->registerServiceProvider(new DispatcherFactory('\\Joomla\\Component\\Templates')); | ||
|
||
$container->set( | ||
ComponentInterface::class, | ||
function (Container $container) | ||
{ | ||
$component = new MVCComponent($container->get(DispatcherFactoryInterface::class)); | ||
|
||
$component->setMvcFactoryFactory($container->get(MVCFactoryFactoryInterface::class)); | ||
|
||
return $component; | ||
} | ||
); | ||
} | ||
}; |