__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Joomla! Content Management System
*
* @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\CMS\Language;
use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Factory;
use Joomla\Database\DatabaseInterface;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Utility class for multilang
*
* @since 2.5.4
*/
class Multilanguage
{
/**
* Flag indicating multilanguage functionality is enabled.
*
* @var boolean
* @since 4.0.0
*/
public static $enabled = false;
/**
* Method to determine if the language filter plugin is enabled.
* This works for both site and administrator.
*
* @param ?CMSApplication $app The application
* @param ?DatabaseInterface $db The database
*
* @return boolean True if site is supporting multiple languages; false otherwise.
*
* @since 2.5.4
*/
public static function isEnabled(?CMSApplication $app = null, ?DatabaseInterface $db = null)
{
// Flag to avoid doing multiple database queries.
static $tested = false;
// Do not proceed with testing if the flag is true
if (static::$enabled) {
return true;
}
// Get application object.
$app = $app ?: Factory::getApplication();
// If being called from the frontend, we can avoid the database query.
if ($app->isClient('site')) {
static::$enabled = $app->getLanguageFilter();
return static::$enabled;
}
// If already tested, don't test again.
if (!$tested) {
// Determine status of language filter plugin.
$db = $db ?: Factory::getDbo();
$query = $db->getQuery(true)
->select($db->quoteName('enabled'))
->from($db->quoteName('#__extensions'))
->where(
[
$db->quoteName('type') . ' = ' . $db->quote('plugin'),
$db->quoteName('folder') . ' = ' . $db->quote('system'),
$db->quoteName('element') . ' = ' . $db->quote('languagefilter'),
]
);
$db->setQuery($query);
static::$enabled = (bool) $db->loadResult();
$tested = true;
}
return static::$enabled;
}
/**
* Method to return a list of language home page menu items.
*
* @param ?DatabaseInterface $db The database
*
* @return array of menu objects.
*
* @since 3.5
*/
public static function getSiteHomePages(?DatabaseInterface $db = null)
{
// To avoid doing duplicate database queries.
static $multilangSiteHomePages = null;
if (!isset($multilangSiteHomePages)) {
// Check for Home pages languages.
$db = $db ?: Factory::getDbo();
$query = $db->getQuery(true)
->select(
[
$db->quoteName('language'),
$db->quoteName('id'),
]
)
->from($db->quoteName('#__menu'))
->where(
[
$db->quoteName('home') . ' = ' . $db->quote('1'),
$db->quoteName('published') . ' = 1',
$db->quoteName('client_id') . ' = 0',
]
);
$db->setQuery($query);
$multilangSiteHomePages = $db->loadObjectList('language');
}
return $multilangSiteHomePages;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Associations.php | File | 6.59 KB | 0664 |
|
| CachingLanguageFactory.php | File | 1.16 KB | 0664 |
|
| Language.php | File | 25.43 KB | 0664 |
|
| LanguageAwareInterface.php | File | 708 B | 0664 |
|
| LanguageAwareTrait.php | File | 1.22 KB | 0664 |
|
| LanguageFactory.php | File | 844 B | 0664 |
|
| LanguageFactoryInterface.php | File | 783 B | 0664 |
|
| LanguageHelper.php | File | 23.15 KB | 0664 |
|
| Multilanguage.php | File | 3.74 KB | 0664 |
|
| Text.php | File | 13.39 KB | 0664 |
|
| Transliterate.php | File | 8.24 KB | 0664 |
|