Skip to content

Commit

Permalink
[5.1] Convert mod_multilangstatus to service provider (#42845)
Browse files Browse the repository at this point in the history
  • Loading branch information
joomlaweby authored Feb 24, 2024
1 parent f8003bc commit 35fc16b
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 21 deletions.
20 changes: 0 additions & 20 deletions administrator/modules/mod_multilangstatus/mod_multilangstatus.php

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
<authorUrl>www.joomla.org</authorUrl>
<version>3.0.0</version>
<description>MOD_MULTILANGSTATUS_XML_DESCRIPTION</description>
<namespace path="src">Joomla\Module\MultilangStatus</namespace>
<files>
<filename module="mod_multilangstatus">mod_multilangstatus.php</filename>
<folder module="mod_multilangstatus">services</folder>
<folder>src</folder>
<folder>tmpl</folder>
</files>

Expand Down
39 changes: 39 additions & 0 deletions administrator/modules/mod_multilangstatus/services/provider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?php

/**
* @package Joomla.Administrator
* @subpackage mod_multilangstatus
*
* @copyright (C) 2024 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

\defined('_JEXEC') or die;

use Joomla\CMS\Extension\Service\Provider\Module;
use Joomla\CMS\Extension\Service\Provider\ModuleDispatcherFactory;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;

/**
* The multilanguage status module service provider.
*
* @since __DEPLOY_VERSION__
*/
return new class () implements ServiceProviderInterface {
/**
* Registers the service provider with a DI container.
*
* @param Container $container The DI container.
*
* @return void
*
* @since __DEPLOY_VERSION__
*/
public function register(Container $container)
{
$container->registerServiceProvider(new ModuleDispatcherFactory('\\Joomla\\Module\\MultilangStatus'));

$container->registerServiceProvider(new Module());
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

/**
* @package Joomla.Administrator
* @subpackage mod_multilangstatus
*
* @copyright (C) 2024 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

namespace Joomla\Module\MultilangStatus\Administrator\Dispatcher;

use Joomla\CMS\Dispatcher\AbstractModuleDispatcher;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Multilanguage;
use Joomla\Database\DatabaseInterface;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
* Dispatcher class for mod_multilangstatus
*
* @since __DEPLOY_VERSION__
*/
class Dispatcher extends AbstractModuleDispatcher
{
/**
* Returns the layout data.
*
* @return array
*
* @since __DEPLOY_VERSION__
*/
protected function getLayoutData()
{
$data = parent::getLayoutData();

$data['multilanguageEnabled'] = Multilanguage::isEnabled($this->getApplication(), Factory::getContainer()->get(DatabaseInterface::class));

return $data;
}
}

0 comments on commit 35fc16b

Please sign in to comment.