mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-21 18:58:53 +00:00
121 lines
3.1 KiB
PHP
121 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\install\module\install_data\task;
|
|
|
|
class add_languages extends \phpbb\install\task_base
|
|
{
|
|
/**
|
|
* @var \phpbb\db\driver\driver_interface
|
|
*/
|
|
protected $db;
|
|
|
|
/**
|
|
* @var \phpbb\install\helper\iohandler\iohandler_interface
|
|
*/
|
|
protected $iohandler;
|
|
|
|
/**
|
|
* @var \phpbb\language\language_file_helper
|
|
*/
|
|
protected $language_helper;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param \phpbb\install\helper\iohandler\iohandler_interface $iohandler Installer's input-output handler
|
|
* @param \phpbb\install\helper\container_factory $container Installer's DI container
|
|
* @param \phpbb\language\language_file_helper $language_helper Language file helper service
|
|
*/
|
|
public function __construct(\phpbb\install\helper\iohandler\iohandler_interface $iohandler,
|
|
\phpbb\install\helper\container_factory $container,
|
|
\phpbb\language\language_file_helper $language_helper)
|
|
{
|
|
$this->db = $container->get('dbal.conn');
|
|
$this->iohandler = $iohandler;
|
|
$this->language_helper = $language_helper;
|
|
|
|
parent::__construct(true);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->db->sql_return_on_error(true);
|
|
|
|
$languages = $this->language_helper->get_available_languages();
|
|
$installed_languages = array();
|
|
|
|
foreach ($languages as $lang_info)
|
|
{
|
|
$lang_pack = array(
|
|
'lang_iso' => $lang_info['iso'],
|
|
'lang_dir' => $lang_info['iso'],
|
|
'lang_english_name' => htmlspecialchars($lang_info['name']),
|
|
'lang_local_name' => htmlspecialchars($lang_info['local_name'], ENT_COMPAT, 'UTF-8'),
|
|
'lang_author' => htmlspecialchars($lang_info['author'], ENT_COMPAT, 'UTF-8'),
|
|
);
|
|
|
|
$this->db->sql_query('INSERT INTO ' . LANG_TABLE . ' ' . $this->db->sql_build_array('INSERT', $lang_pack));
|
|
|
|
$installed_languages[] = (int) $this->db->sql_nextid();
|
|
if ($this->db->get_sql_error_triggered())
|
|
{
|
|
$error = $this->db->sql_error($this->db->get_sql_error_sql());
|
|
$this->iohandler->add_error_message($error['message']);
|
|
}
|
|
}
|
|
|
|
$sql = 'SELECT * FROM ' . PROFILE_FIELDS_TABLE;
|
|
$result = $this->db->sql_query($sql);
|
|
|
|
$insert_buffer = new \phpbb\db\sql_insert_buffer($this->db, PROFILE_LANG_TABLE);
|
|
while ($row = $this->db->sql_fetchrow($result))
|
|
{
|
|
foreach ($installed_languages as $lang_id)
|
|
{
|
|
$insert_buffer->insert(array(
|
|
'field_id' => $row['field_id'],
|
|
'lang_id' => $lang_id,
|
|
|
|
// Remove phpbb_ from field name
|
|
'lang_name' => strtoupper(substr($row['field_name'], 6)),
|
|
'lang_explain' => '',
|
|
'lang_default_value' => '',
|
|
));
|
|
}
|
|
}
|
|
|
|
$this->db->sql_freeresult($result);
|
|
|
|
$insert_buffer->flush();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
static public function get_step_count()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_task_lang_name()
|
|
{
|
|
return 'TASK_ADD_LANGUAGES';
|
|
}
|
|
}
|