mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-24 19:08:53 +00:00
Compare commits
28 commits
74afe93f6f
...
425a6a182c
Author | SHA1 | Date | |
---|---|---|---|
|
425a6a182c | ||
|
9c49a2b86b | ||
|
d017eff8f1 | ||
|
d4a3311b76 | ||
|
bc470285fc | ||
|
1d7543c778 | ||
|
8411da1819 | ||
|
3f4be7e3af | ||
|
c7e94d4632 | ||
|
51c997aa22 | ||
|
af93b1aee9 | ||
|
ba0282bf38 | ||
|
ccbdfb49c7 | ||
|
43cf7b73bd | ||
|
3a5247d01b | ||
|
5e0dc9ef2e | ||
|
8338ff9e56 | ||
|
84e7e34a66 | ||
|
18bae795f0 | ||
|
09fd86ffb0 | ||
|
4a00212f2d | ||
|
cb47d78d26 | ||
|
0eb98d51e2 | ||
|
82a5e20f3e | ||
|
71fe9d60c4 | ||
|
59b482a222 | ||
|
d934c8c4b7 | ||
|
d07aeb00d8 |
26 changed files with 500 additions and 40 deletions
|
@ -20,7 +20,7 @@
|
|||
<form method="post" action="#" id="language_selector">
|
||||
<fieldset class="nobg">
|
||||
<label for="language">{L_SELECT_LANG}{L_COLON}</label>
|
||||
<select id="language" name="language">
|
||||
<select id="language" name="language">
|
||||
<!-- BEGIN language_select_item -->
|
||||
<option value="{language_select_item.VALUE}"<!-- IF language_select_item.SELECTED --> selected="selected"<!-- ENDIF -->>{language_select_item.NAME}</option>
|
||||
<!-- END language_select_item -->
|
||||
|
|
|
@ -384,6 +384,42 @@ class doctrine implements tools_interface
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of the table index names and relevant data in format
|
||||
* [
|
||||
* [$index_name] = [
|
||||
* 'columns' => (array) $index_columns,
|
||||
* 'flags' => (array) $index_flags,
|
||||
* 'options' => (array) $index_options,
|
||||
* 'is_primary'=> (bool) $isPrimary,
|
||||
* 'is_unique' => (bool) $isUnique,
|
||||
* 'is_simple' => (bool) $isSimple,
|
||||
* ]
|
||||
*
|
||||
* @param string $table_name
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function sql_get_table_index_data(string $table_name): array
|
||||
{
|
||||
$schema = $this->get_schema();
|
||||
$table = $schema->getTable($table_name);
|
||||
$indexes = [];
|
||||
foreach ($table->getIndexes() as $index)
|
||||
{
|
||||
$indexes[$index->getName()] = [
|
||||
'columns' => array_map('strtolower', $index->getUnquotedColumns()),
|
||||
'flags' => $index->getFlags(),
|
||||
'options' => $index->getOptions(),
|
||||
'is_primary'=> $index->isPrimary(),
|
||||
'is_unique' => $index->isUnique(),
|
||||
'is_simple' => $index->isSimpleIndex(),
|
||||
];
|
||||
}
|
||||
|
||||
return $indexes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of indices for either unique and primary keys, or simple indices.
|
||||
*
|
||||
|
@ -635,25 +671,16 @@ class doctrine implements tools_interface
|
|||
foreach ($table_data['KEYS'] as $key_name => $key_data)
|
||||
{
|
||||
$columns = (is_array($key_data[1])) ? $key_data[1] : [$key_data[1]];
|
||||
|
||||
// Supports key columns defined with there length
|
||||
$columns = array_map(function (string $column)
|
||||
{
|
||||
if (strpos($column, ':') !== false)
|
||||
{
|
||||
$parts = explode(':', $column, 2);
|
||||
return $parts[0];
|
||||
}
|
||||
return $column;
|
||||
}, $columns);
|
||||
$options = [];
|
||||
$this->schema_get_index_key_data($columns, $options);
|
||||
|
||||
if ($key_data[0] === 'UNIQUE')
|
||||
{
|
||||
$table->addUniqueIndex($columns, $key_name);
|
||||
$table->addUniqueIndex($columns, $key_name, $options);
|
||||
}
|
||||
else
|
||||
{
|
||||
$table->addIndex($columns, $key_name);
|
||||
$table->addIndex($columns, $key_name, [], $options);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -836,7 +863,10 @@ class doctrine implements tools_interface
|
|||
return;
|
||||
}
|
||||
|
||||
$table->addIndex($columns, $index_name);
|
||||
$options = [];
|
||||
$this->schema_get_index_key_data($columns, $options);
|
||||
|
||||
$table->addIndex($columns, $index_name, [], $options);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -858,7 +888,10 @@ class doctrine implements tools_interface
|
|||
return;
|
||||
}
|
||||
|
||||
$table->addUniqueIndex($columns, $index_name);
|
||||
$options = [];
|
||||
$this->schema_get_index_key_data($columns, $options);
|
||||
|
||||
$table->addUniqueIndex($columns, $index_name, $options);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -897,6 +930,30 @@ class doctrine implements tools_interface
|
|||
$table->setPrimaryKey($columns);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if index data contains key length
|
||||
* and put it into $options['lengths'] array.
|
||||
* Handles key length in formats of 'keyname:123' or 'keyname(123)'
|
||||
*
|
||||
* @param array $columns
|
||||
* @param array $options
|
||||
*/
|
||||
protected function schema_get_index_key_data(array &$columns, array &$options): void
|
||||
{
|
||||
if (!empty($columns))
|
||||
{
|
||||
$columns = array_map(function (string $column) use (&$options)
|
||||
{
|
||||
if (preg_match('/^([a-zA-Z0-9_]+)(?:(?:\:|\()([0-9]{1,3})\)?)?$/', $column, $parts))
|
||||
{
|
||||
$options['lengths'][] = $parts[2] ?? null;
|
||||
return $parts[1];
|
||||
}
|
||||
return $column;
|
||||
}, $columns);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Recreate an index of a table
|
||||
*
|
||||
|
|
|
@ -339,6 +339,14 @@ class helper
|
|||
protected function render_language_select($selected_language = null)
|
||||
{
|
||||
$langs = $this->lang_helper->get_available_languages();
|
||||
|
||||
// The first language will be selected by default. Unless a user has consciously included
|
||||
// other languages in the installation process, it will be British English anyway.
|
||||
if ($selected_language === null && count($langs))
|
||||
{
|
||||
$selected_language = $langs[0]['iso'];
|
||||
}
|
||||
|
||||
foreach ($langs as $lang)
|
||||
{
|
||||
$this->template->assign_block_vars('language_select_item', array(
|
||||
|
|
|
@ -65,6 +65,8 @@ class language_file_helper
|
|||
$available_languages[] = $this->get_language_data_from_json($data);
|
||||
}
|
||||
|
||||
usort($available_languages, [$this, 'sort_by_local_name']);
|
||||
|
||||
return $available_languages;
|
||||
}
|
||||
|
||||
|
@ -123,4 +125,27 @@ class language_file_helper
|
|||
'turnstile_lang' => $data['extra']['turnstile-lang'] ?? '',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Sorts the languages by their name instead of iso code
|
||||
*
|
||||
* @param mixed $a First language data
|
||||
* @param mixed $b Second language data
|
||||
* @return int
|
||||
*/
|
||||
private static function sort_by_local_name(mixed $a, mixed $b): int
|
||||
{
|
||||
if ($a['local_name'] > $b['local_name'])
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else if ($a['local_name'] < $b['local_name'])
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -161,6 +161,16 @@ class environment extends \Twig\Environment
|
|||
return $this->assets_bag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the event dispatcher instance
|
||||
*
|
||||
* @return dispatcher_interface
|
||||
*/
|
||||
public function get_phpbb_dispatcher()
|
||||
{
|
||||
return $this->phpbb_dispatcher;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the namespace look up order
|
||||
*
|
||||
|
|
|
@ -24,9 +24,13 @@ class event extends \Twig\Node\Node
|
|||
/** @var \phpbb\template\twig\environment */
|
||||
protected $environment;
|
||||
|
||||
public function __construct(\Twig\Node\Expression\AbstractExpression $expr, \phpbb\template\twig\environment $environment, $lineno, $tag = null)
|
||||
/** @var array */
|
||||
protected $template_event_priority_array;
|
||||
|
||||
public function __construct(\Twig\Node\Expression\AbstractExpression $expr, \phpbb\template\twig\environment $environment, $lineno, $tag = null, $template_event_priority_array = [])
|
||||
{
|
||||
$this->environment = $environment;
|
||||
$this->template_event_priority_array = $template_event_priority_array;
|
||||
|
||||
parent::__construct(array('expr' => $expr), array(), $lineno, $tag);
|
||||
}
|
||||
|
@ -42,10 +46,20 @@ class event extends \Twig\Node\Node
|
|||
|
||||
$location = $this->listener_directory . $this->getNode('expr')->getAttribute('name');
|
||||
|
||||
$template_event_listeners = [];
|
||||
|
||||
// Group and sort extension template events in according to their priority (0 by default if not set)
|
||||
foreach ($this->environment->get_phpbb_extensions() as $ext_namespace => $ext_path)
|
||||
{
|
||||
$ext_namespace = str_replace('/', '_', $ext_namespace);
|
||||
$priority_key = intval($this->template_event_priority_array[$ext_namespace][$location] ?? 0);
|
||||
$template_event_listeners[$priority_key][] = $ext_namespace;
|
||||
}
|
||||
krsort($template_event_listeners);
|
||||
|
||||
$template_event_listeners = array_merge(...$template_event_listeners);
|
||||
foreach ($template_event_listeners as $ext_namespace)
|
||||
{
|
||||
if ($this->environment->isDebug())
|
||||
{
|
||||
// If debug mode is enabled, lets check for new/removed EVENT
|
||||
|
@ -54,8 +68,7 @@ class event extends \Twig\Node\Node
|
|||
// purge the cache when a new event template file is added)
|
||||
$compiler
|
||||
->write("if (\$this->env->getLoader()->exists('@{$ext_namespace}/{$location}.html')) {\n")
|
||||
->indent()
|
||||
;
|
||||
->indent();
|
||||
}
|
||||
|
||||
if ($this->environment->isDebug() || $this->environment->getLoader()->exists('@' . $ext_namespace . '/' . $location . '.html'))
|
||||
|
@ -66,16 +79,14 @@ class event extends \Twig\Node\Node
|
|||
// We set the namespace lookup order to be this extension first, then the main path
|
||||
->write("\$this->env->setNamespaceLookUpOrder(array('{$ext_namespace}', '__main__'));\n")
|
||||
->write("\$this->env->loadTemplate(\$this->env->getTemplateClass('@{$ext_namespace}/{$location}.html'), '@{$ext_namespace}/{$location}.html')->display(\$context);\n")
|
||||
->write("\$this->env->setNamespaceLookUpOrder(\$previous_look_up_order);\n")
|
||||
;
|
||||
->write("\$this->env->setNamespaceLookUpOrder(\$previous_look_up_order);\n");
|
||||
}
|
||||
|
||||
if ($this->environment->isDebug())
|
||||
{
|
||||
$compiler
|
||||
->outdent()
|
||||
->write("}\n\n")
|
||||
;
|
||||
->write("}\n\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,6 +18,9 @@ class event extends \Twig\TokenParser\AbstractTokenParser
|
|||
/** @var \phpbb\template\twig\environment */
|
||||
protected $environment;
|
||||
|
||||
/** @var array */
|
||||
protected $template_event_priority_array;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
|
@ -26,6 +29,25 @@ class event extends \Twig\TokenParser\AbstractTokenParser
|
|||
public function __construct(\phpbb\template\twig\environment $environment)
|
||||
{
|
||||
$this->environment = $environment;
|
||||
$phpbb_dispatcher = $this->environment->get_phpbb_dispatcher();
|
||||
|
||||
$template_event_priority_array = [];
|
||||
/**
|
||||
* Allows assigning priority to template event listeners
|
||||
*
|
||||
* @event core.twig_event_tokenparser_constructor
|
||||
* @var array template_event_priority_array Array with template event priority assignments per extension namespace
|
||||
*
|
||||
* @since 4.0.0-a1
|
||||
*/
|
||||
if ($phpbb_dispatcher)
|
||||
{
|
||||
$vars = ['template_event_priority_array'];
|
||||
extract($phpbb_dispatcher->trigger_event('core.twig_event_tokenparser_constructor', compact($vars)));
|
||||
}
|
||||
|
||||
$this->template_event_priority_array = $template_event_priority_array;
|
||||
unset($template_event_priority_array);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -42,7 +64,7 @@ class event extends \Twig\TokenParser\AbstractTokenParser
|
|||
$stream = $this->parser->getStream();
|
||||
$stream->expect(\Twig\Token::BLOCK_END_TYPE);
|
||||
|
||||
return new \phpbb\template\twig\node\event($expr, $this->environment, $token->getLine(), $this->getTag());
|
||||
return new \phpbb\template\twig\node\event($expr, $this->environment, $token->getLine(), $this->getTag(), $this->template_event_priority_array);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -22,12 +22,22 @@ class phpbb_dbal_migration_schema extends \phpbb\db\migration\migration
|
|||
),
|
||||
),
|
||||
'add_tables' => array(
|
||||
$this->table_prefix . 'foobar' => array(
|
||||
'COLUMNS' => array(
|
||||
'module_id' => array('UINT:3', NULL, 'auto_increment'),
|
||||
),
|
||||
$this->table_prefix . 'foobar' => [
|
||||
'COLUMNS' => [
|
||||
'module_id' => ['UINT:3', NULL, 'auto_increment'],
|
||||
'user_id' => ['ULINT', 0],
|
||||
'endpoint' => ['VCHAR:220', ''],
|
||||
'expiration_time' => ['TIMESTAMP', 0],
|
||||
'p256dh' => ['VCHAR:200', ''],
|
||||
'auth' => ['VCHAR:100', ''],
|
||||
],
|
||||
'PRIMARY_KEY' => 'module_id',
|
||||
),
|
||||
'KEYS' => [
|
||||
'i_simple' => ['INDEX', ['user_id', 'endpoint:191']],
|
||||
'i_uniq' => ['UNIQUE', ['expiration_time', 'p256dh(100)']],
|
||||
'i_auth' => ['INDEX', 'auth'],
|
||||
],
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
@ -408,6 +408,61 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
|
|||
$this->assertTrue($this->db_tools->sql_column_exists('phpbb_config', 'test_column1'));
|
||||
$this->assertTrue($this->db_tools->sql_table_exists('phpbb_foobar'));
|
||||
|
||||
$index_data_row = $this->db_tools->sql_get_table_index_data('phpbb_foobar');
|
||||
$this->assertEquals(4, count($index_data_row));
|
||||
$this->assertTrue(isset($index_data_row['i_simple']));
|
||||
$this->assertTrue(isset($index_data_row['i_uniq']));
|
||||
$this->assertTrue(isset($index_data_row['i_auth']));
|
||||
|
||||
$is_mysql = $this->db->get_sql_layer() === 'mysqli'; // Key 'lengths' option only applies to MySQL indexes
|
||||
// MSSQL primary index key has 'clustered' flag, 'nonclustered' otherwise
|
||||
// See https://learn.microsoft.com/en-us/sql/relational-databases/indexes/clustered-and-nonclustered-indexes-described?view=sql-server-ver17#indexes-and-constraints
|
||||
$is_mssql = in_array($this->db->get_sql_layer(), ['mssqlnative', 'mssql_odbc']);
|
||||
foreach ($index_data_row as $index_name => $index_data)
|
||||
{
|
||||
switch ($index_name)
|
||||
{
|
||||
case 'i_simple':
|
||||
$this->assertEquals(['user_id', 'endpoint'], $index_data['columns']);
|
||||
$this->assertEquals($is_mssql ? ['nonclustered'] : [], $index_data['flags']);
|
||||
$this->assertFalse($index_data['is_primary']);
|
||||
$this->assertFalse($index_data['is_unique']);
|
||||
$this->assertTrue($index_data['is_simple']);
|
||||
$this->assertEquals(2, count($index_data['options']['lengths']));
|
||||
$this->assertEmpty($index_data['options']['lengths'][0]);
|
||||
$this->assertEquals($is_mysql ? 191 : null, $index_data['options']['lengths'][1]);
|
||||
break;
|
||||
case 'i_uniq':
|
||||
$this->assertEquals(['expiration_time', 'p256dh'], $index_data['columns']);
|
||||
$this->assertEquals($is_mssql ? ['nonclustered'] : [], $index_data['flags']);
|
||||
$this->assertFalse($index_data['is_primary']);
|
||||
$this->assertTrue($index_data['is_unique']);
|
||||
$this->assertFalse($index_data['is_simple']);
|
||||
$this->assertEquals(2, count($index_data['options']['lengths']));
|
||||
$this->assertEmpty($index_data['options']['lengths'][0]);
|
||||
$this->assertEquals($is_mysql ? 100 : null, $index_data['options']['lengths'][1]);
|
||||
break;
|
||||
case 'i_auth':
|
||||
$this->assertEquals(['auth'], $index_data['columns']);
|
||||
$this->assertEquals($is_mssql ? ['nonclustered'] : [], $index_data['flags']);
|
||||
$this->assertFalse($index_data['is_primary']);
|
||||
$this->assertFalse($index_data['is_unique']);
|
||||
$this->assertTrue($index_data['is_simple']);
|
||||
$this->assertEquals(1, count($index_data['options']['lengths']));
|
||||
$this->assertEmpty($index_data['options']['lengths'][0]);
|
||||
break;
|
||||
default: // Primary key
|
||||
$this->assertEquals(['module_id'], $index_data['columns']);
|
||||
$this->assertEquals($is_mssql ? ['clustered'] : [], $index_data['flags']);
|
||||
$this->assertTrue($index_data['is_primary']);
|
||||
$this->assertTrue($index_data['is_unique']);
|
||||
$this->assertFalse($index_data['is_simple']);
|
||||
$this->assertEquals(1, count($index_data['options']['lengths']));
|
||||
$this->assertEmpty($index_data['options']['lengths'][0]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while ($this->migrator->migration_state('phpbb_dbal_migration_schema'))
|
||||
{
|
||||
$this->migrator->revert('phpbb_dbal_migration_schema');
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
class phpbb_functional_extension_controller_test extends phpbb_functional_test_case
|
||||
{
|
||||
protected $phpbb_extension_manager;
|
||||
|
||||
private static $helper;
|
||||
|
||||
protected static $fixtures = array(
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
class phpbb_functional_extension_global_lang_test extends phpbb_functional_test_case
|
||||
{
|
||||
protected $phpbb_extension_manager;
|
||||
|
||||
private static $helper;
|
||||
|
||||
protected static $fixtures = array(
|
||||
|
|
|
@ -17,8 +17,6 @@ require_once __DIR__ . '/../../phpBB/includes/acp/acp_modules.php';
|
|||
*/
|
||||
class phpbb_functional_extension_module_test extends phpbb_functional_test_case
|
||||
{
|
||||
protected $phpbb_extension_manager;
|
||||
|
||||
private static $helper;
|
||||
|
||||
protected static $fixtures = array(
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
class phpbb_functional_extension_permission_lang_test extends phpbb_functional_test_case
|
||||
{
|
||||
protected $phpbb_extension_manager;
|
||||
|
||||
private static $helper;
|
||||
|
||||
protected static $fixtures = array(
|
||||
|
|
105
tests/functional/extension_template_event_order_test.php
Normal file
105
tests/functional/extension_template_event_order_test.php
Normal file
|
@ -0,0 +1,105 @@
|
|||
<?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.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group functional
|
||||
*/
|
||||
class phpbb_functional_extension_template_event_order_test extends phpbb_functional_test_case
|
||||
{
|
||||
static private $helper;
|
||||
|
||||
static protected $fixtures = [
|
||||
'./',
|
||||
];
|
||||
|
||||
static public function setUpBeforeClass(): void
|
||||
{
|
||||
parent::setUpBeforeClass();
|
||||
|
||||
self::$helper = new phpbb_test_case_helpers(__CLASS__);
|
||||
self::$helper->copy_ext_fixtures(__DIR__ . '/fixtures/ext/', self::$fixtures);
|
||||
}
|
||||
|
||||
static public function tearDownAfterClass(): void
|
||||
{
|
||||
parent::tearDownAfterClass();
|
||||
|
||||
self::$helper->restore_original_ext_dir();
|
||||
}
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->purge_cache();
|
||||
}
|
||||
|
||||
protected function tearDown(): void
|
||||
{
|
||||
$this->uninstall_ext('foo/bar');
|
||||
$this->uninstall_ext('foo/foo');
|
||||
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
protected static function setup_extensions()
|
||||
{
|
||||
return ['foo/bar', 'foo/foo'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Check extensions template event listener prioritizing
|
||||
*/
|
||||
public function test_different_template_event_priority()
|
||||
{
|
||||
global $phpbb_root_path;
|
||||
|
||||
$crawler = self::request('GET', 'index.php');
|
||||
$quick_links_menu = $crawler->filter('ul[role="menu"]')->eq(0);
|
||||
$quick_links_menu_nodes_count = (int) $quick_links_menu->filter('li')->count();
|
||||
// Ensure foo/foo template event goes before foo/bar one
|
||||
$this->assertStringContainsString('FOO_FOO_QUICK_LINK', $quick_links_menu->filter('li')->eq($quick_links_menu_nodes_count - 4)->filter('span')->text());
|
||||
$this->assertStringContainsString('FOO_BAR_QUICK_LINK', $quick_links_menu->filter('li')->eq($quick_links_menu_nodes_count - 3)->filter('span')->text());
|
||||
|
||||
// Change template events order to default, put foo/bar event before foo/foo one
|
||||
$this->disable_ext('foo/bar');
|
||||
$this->disable_ext('foo/foo');
|
||||
|
||||
$this->assertTrue(copy(__DIR__ . '/fixtures/ext/foo/bar/event/template_event_order_higher.php', $phpbb_root_path . 'ext/foo/bar/event/template_event_order.php'));
|
||||
$this->assertTrue(copy(__DIR__ . '/fixtures/ext/foo/foo/event/template_event_order_lower.php', $phpbb_root_path . 'ext/foo/foo/event/template_event_order.php'));
|
||||
|
||||
$this->install_ext('foo/bar');
|
||||
$this->install_ext('foo/foo');
|
||||
|
||||
$crawler = self::request('GET', 'index.php');
|
||||
$quick_links_menu = $crawler->filter('ul[role="menu"]')->eq(0);
|
||||
$quick_links_menu_nodes_count = (int) $quick_links_menu->filter('li')->count();
|
||||
// Ensure foo/foo template event goes before foo/bar one
|
||||
$this->assertStringContainsString('FOO_BAR_QUICK_LINK', $quick_links_menu->filter('li')->eq($quick_links_menu_nodes_count - 4)->filter('span')->text());
|
||||
$this->assertStringContainsString('FOO_FOO_QUICK_LINK', $quick_links_menu->filter('li')->eq($quick_links_menu_nodes_count - 3)->filter('span')->text());
|
||||
}
|
||||
|
||||
/**
|
||||
* Check extensions template event listener equal (default - 0) priority rendering
|
||||
* Should render in the order of reading listener files from the filesystem
|
||||
*/
|
||||
public function test_same_template_event_priority()
|
||||
{
|
||||
global $phpbb_root_path;
|
||||
|
||||
$crawler = self::request('GET', 'index.php');
|
||||
// Ensure foo/bar template event goes before foo/foo one (assuming they have been read from the filesystem in alphabetical order)
|
||||
$this->assertStringContainsString('FOO_BAR_FORUMLIST_BODY_BEFORE', $crawler->filter('p[id*="forumlist_body_before"]')->eq(0)->text());
|
||||
$this->assertStringContainsString('FOO_FOO_FORUMLIST_BODY_BEFORE', $crawler->filter('p[id*="forumlist_body_before"]')->eq(1)->text());
|
||||
}
|
||||
}
|
|
@ -14,7 +14,13 @@ services:
|
|||
class: foo\bar\event\permission
|
||||
tags:
|
||||
- { name: event.listener }
|
||||
|
||||
foo_bar.listener.user_setup:
|
||||
class: foo\bar\event\user_setup
|
||||
tags:
|
||||
- { name: event.listener }
|
||||
|
||||
foo_bar.listener.template_event_order:
|
||||
class: foo\bar\event\template_event_order
|
||||
tags:
|
||||
- { name: event.listener }
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
<?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 foo\bar\event;
|
||||
|
||||
/**
|
||||
* Event listener
|
||||
*/
|
||||
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
||||
|
||||
class template_event_order implements EventSubscriberInterface
|
||||
{
|
||||
static public function getSubscribedEvents()
|
||||
{
|
||||
return array(
|
||||
'core.twig_event_tokenparser_constructor' => 'set_template_event_priority',
|
||||
);
|
||||
}
|
||||
|
||||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_bar'] = [
|
||||
'event/navbar_header_quick_links_after' => -1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
<?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 foo\bar\event;
|
||||
|
||||
/**
|
||||
* Event listener
|
||||
*/
|
||||
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
||||
|
||||
class template_event_order implements EventSubscriberInterface
|
||||
{
|
||||
static public function getSubscribedEvents()
|
||||
{
|
||||
return array(
|
||||
'core.twig_event_tokenparser_constructor' => 'set_template_event_priority',
|
||||
);
|
||||
}
|
||||
|
||||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_bar'] = [
|
||||
'event/navbar_header_quick_links_after' => 1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
<p id="foo_bar_forumlist_body_before">{{ lang('FOO_BAR_FORUMLIST_BODY_BEFORE') }}</p>
|
|
@ -0,0 +1 @@
|
|||
<li><span>{{ lang('FOO_BAR_QUICK_LINK') }}</span></li>
|
|
@ -1,3 +1,8 @@
|
|||
services:
|
||||
foo_foo.controller:
|
||||
class: foo\foo\controller\controller
|
||||
|
||||
foo_foo.listener.template_event_order:
|
||||
class: foo\foo\event\template_event_order
|
||||
tags:
|
||||
- { name: event.listener }
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
<?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 foo\foo\event;
|
||||
|
||||
/**
|
||||
* Event listener
|
||||
*/
|
||||
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
||||
|
||||
class template_event_order implements EventSubscriberInterface
|
||||
{
|
||||
static public function getSubscribedEvents()
|
||||
{
|
||||
return array(
|
||||
'core.twig_event_tokenparser_constructor' => 'set_template_event_priority',
|
||||
);
|
||||
}
|
||||
|
||||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_foo'] = [
|
||||
'event/navbar_header_quick_links_after' => 1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
<?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 foo\foo\event;
|
||||
|
||||
/**
|
||||
* Event listener
|
||||
*/
|
||||
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
||||
|
||||
class template_event_order implements EventSubscriberInterface
|
||||
{
|
||||
static public function getSubscribedEvents()
|
||||
{
|
||||
return array(
|
||||
'core.twig_event_tokenparser_constructor' => 'set_template_event_priority',
|
||||
);
|
||||
}
|
||||
|
||||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_foo'] = [
|
||||
'event/navbar_header_quick_links_after' => -1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
<p id="foo_foo_forumlist_body_before">{{ lang('FOO_FOO_FORUMLIST_BODY_BEFORE') }}</p>
|
|
@ -0,0 +1 @@
|
|||
<li><span>{{ lang('FOO_FOO_QUICK_LINK') }}</span></li>
|
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
class phpbb_functional_metadata_manager_test extends phpbb_functional_test_case
|
||||
{
|
||||
protected $phpbb_extension_manager;
|
||||
|
||||
private static $helper;
|
||||
|
||||
protected static $fixtures = array(
|
||||
|
|
|
@ -644,7 +644,7 @@ class phpbb_functional_test_case extends phpbb_test_case
|
|||
|
||||
$meta_refresh = $crawler->filter('meta[http-equiv="refresh"]');
|
||||
|
||||
// Wait for extension to be fully enabled
|
||||
// Wait for extension to be fully disabled
|
||||
while (count($meta_refresh))
|
||||
{
|
||||
preg_match('#url=.+/(adm+.+)#', $meta_refresh->attr('content'), $match);
|
||||
|
|
Loading…
Add table
Reference in a new issue