-
-
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.
Move com_workflow to services (#21760)
- Loading branch information
Showing
2 changed files
with
52 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
52 changes: 52 additions & 0 deletions
52
administrator/components/com_workflow/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,52 @@ | ||
<?php | ||
/** | ||
* @package Joomla.Administrator | ||
* @subpackage com_workflow | ||
* | ||
* @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 workflow 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\\Workflow')); | ||
$container->registerServiceProvider(new DispatcherFactory('\\Joomla\\Component\\Workflow')); | ||
$container->set( | ||
ComponentInterface::class, | ||
function (Container $container) | ||
{ | ||
$component = new MVCComponent($container->get(DispatcherFactoryInterface::class)); | ||
$component->setMvcFactoryFactory($container->get(MVCFactoryFactoryInterface::class)); | ||
|
||
return $component; | ||
} | ||
); | ||
} | ||
}; |