This commit is contained in:
AlexBa16
2026-06-08 15:29:52 +02:00
commit 27903eed4a
9931 changed files with 1535659 additions and 0 deletions
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<extension type="plugin" group="system" method="upgrade">
<name>plg_system_languagecode</name>
<author>Joomla! Project</author>
<creationDate>2011-11</creationDate>
<copyright>(C) 2011 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<version>3.0.0</version>
<description>PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION</description>
<namespace path="src">Joomla\Plugin\System\LanguageCode</namespace>
<files>
<folder plugin="languagecode">services</folder>
<folder>src</folder>
</files>
<languages>
<language tag="en-GB">language/en-GB/plg_system_languagecode.ini</language>
<language tag="en-GB">language/en-GB/plg_system_languagecode.sys.ini</language>
</languages>
<config>
<fields name="params">
<field
name="languagecodeplugin"
type="hidden"
default="true"
/>
</fields>
</config>
</extension>
@@ -0,0 +1,42 @@
<?php
/**
* @package Joomla.Plugin
* @subpackage System.languagecode
*
* @copyright (C) 2023 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\PluginInterface;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
use Joomla\Plugin\System\LanguageCode\Extension\LanguageCode;
return new class () implements ServiceProviderInterface {
/**
* Registers the service provider with a DI container.
*
* @param Container $container The DI container.
*
* @return void
*
* @since 4.4.0
*/
public function register(Container $container): void
{
$container->set(
PluginInterface::class,
$container->lazy(LanguageCode::class, function (Container $container) {
$plugin = new LanguageCode(
(array) PluginHelper::getPlugin('system', 'languagecode')
);
return $plugin;
})
);
}
};
@@ -0,0 +1,171 @@
<?php
/**
* @package Joomla.Plugin
* @subpackage System.languagecode
*
* @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\Plugin\System\LanguageCode\Extension;
use Joomla\CMS\Event\Application\AfterRenderEvent;
use Joomla\CMS\Event\Model\PrepareFormEvent;
use Joomla\CMS\Language\LanguageHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\Event\SubscriberInterface;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Language Code plugin class.
*
* @since 2.5
*/
final class LanguageCode extends CMSPlugin implements SubscriberInterface
{
/**
* Returns an array of events this subscriber will listen to.
*
* @return array
*
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
return [
'onAfterRender' => 'onAfterRender',
'onContentPrepareForm' => 'onContentPrepareForm',
];
}
/**
* Plugin that changes the language code used in the <html /> tag.
*
* @param AfterRenderEvent $event The event instance.
*
* @return void
*
* @since 2.5
*/
public function onAfterRender(AfterRenderEvent $event): void
{
$app = $event->getApplication();
// Use this plugin only in site application.
if ($app->isClient('site')) {
// Get the response body.
$body = $app->getBody();
// Get the current language code.
$code = $app->getDocument()->getLanguage();
// Get the new code.
$new_code = $this->params->get($code);
// Replace the old code by the new code in the <html /> tag.
if ($new_code) {
// Replace the new code in the HTML document.
$patterns = [
\chr(1) . '(<html.*\s+xml:lang=")(' . $code . ')(".*>)' . \chr(1) . 'i',
\chr(1) . '(<html.*\s+lang=")(' . $code . ')(".*>)' . \chr(1) . 'i',
];
$replace = [
'${1}' . strtolower($new_code) . '${3}',
'${1}' . strtolower($new_code) . '${3}',
];
} else {
$patterns = [];
$replace = [];
}
// Replace codes in <link hreflang="" /> attributes.
preg_match_all(\chr(1) . '(<link.*\s+hreflang=")([0-9a-z\-]*)(".*\s+rel="alternate".*>)' . \chr(1) . 'i', $body, $matches);
foreach ($matches[2] as $match) {
$new_code = $this->params->get(strtolower($match));
if ($new_code) {
$patterns[] = \chr(1) . '(<link.*\s+hreflang=")(' . $match . ')(".*\s+rel="alternate".*>)' . \chr(1) . 'i';
$replace[] = '${1}' . $new_code . '${3}';
}
}
preg_match_all(\chr(1) . '(<link.*\s+rel="alternate".*\s+hreflang=")([0-9A-Za-z\-]*)(".*>)' . \chr(1) . 'i', $body, $matches);
foreach ($matches[2] as $match) {
$new_code = $this->params->get(strtolower($match));
if ($new_code) {
$patterns[] = \chr(1) . '(<link.*\s+rel="alternate".*\s+hreflang=")(' . $match . ')(".*>)' . \chr(1) . 'i';
$replace[] = '${1}' . $new_code . '${3}';
}
}
// Replace codes in itemprop content
preg_match_all(\chr(1) . '(<meta.*\s+itemprop="inLanguage".*\s+content=")([0-9A-Za-z\-]*)(".*>)' . \chr(1) . 'i', $body, $matches);
foreach ($matches[2] as $match) {
$new_code = $this->params->get(strtolower($match));
if ($new_code) {
$patterns[] = \chr(1) . '(<meta.*\s+itemprop="inLanguage".*\s+content=")(' . $match . ')(".*>)' . \chr(1) . 'i';
$replace[] = '${1}' . $new_code . '${3}';
}
}
$app->setBody(preg_replace($patterns, $replace, $body));
}
}
/**
* Prepare form.
*
* @param PrepareFormEvent $event The event object
*
* @return void
*
* @since 2.5
*/
public function onContentPrepareForm(PrepareFormEvent $event): void
{
$form = $event->getForm();
// Check we are manipulating the languagecode plugin.
if ($form->getName() !== 'com_plugins.plugin' || !$form->getField('languagecodeplugin', 'params')) {
return;
}
// Get site languages.
if ($languages = LanguageHelper::getKnownLanguages(JPATH_SITE)) {
// Inject fields into the form.
foreach ($languages as $tag => $language) {
$form->load('
<form>
<fields name="params">
<fieldset
name="languagecode"
label="PLG_SYSTEM_LANGUAGECODE_FIELDSET_LABEL"
description="PLG_SYSTEM_LANGUAGECODE_FIELDSET_DESC"
>
<field
name="' . strtolower($tag) . '"
type="text"
label="' . $tag . '"
description="' . htmlspecialchars(Text::sprintf('PLG_SYSTEM_LANGUAGECODE_FIELD_DESC', $language['name']), ENT_COMPAT, 'UTF-8') . '"
translate_description="false"
translate_label="false"
size="7"
filter="cmd"
/>
</fieldset>
</fields>
</form>');
}
}
}
}