aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-01 20:05:15 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-30 17:26:00 +0200
commit459f1d4c1f26658c70d29ac7c4e3f3389a973a59 (patch)
tree15940734e6782882b1879f338cc29b72288c1735 /phpBB/phpbb/textreparser
parentb5911281ae175340817345e63ddbfaf43abb3cec (diff)
downloadforums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar
forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.gz
forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.bz2
forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.xz
forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.zip
[ticket/13803] Refactored test
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser')
-rw-r--r--phpBB/phpbb/textreparser/plugins/forum_description.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/forum_rules.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/group_description.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/pm_text.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_option.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_title.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/post_text.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/user_signature.php4
-rw-r--r--phpBB/phpbb/textreparser/row_based_plugin.php4
9 files changed, 18 insertions, 18 deletions
diff --git a/phpBB/phpbb/textreparser/plugins/forum_description.php b/phpBB/phpbb/textreparser/plugins/forum_description.php
index d6e95c9638..7798e4b20b 100644
--- a/phpBB/phpbb/textreparser/plugins/forum_description.php
+++ b/phpBB/phpbb/textreparser/plugins/forum_description.php
@@ -18,7 +18,7 @@ class forum_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'forum_id',
@@ -30,7 +30,7 @@ class forum_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return FORUMS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/forum_rules.php b/phpBB/phpbb/textreparser/plugins/forum_rules.php
index 36bb595cb9..57c666a556 100644
--- a/phpBB/phpbb/textreparser/plugins/forum_rules.php
+++ b/phpBB/phpbb/textreparser/plugins/forum_rules.php
@@ -18,7 +18,7 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'forum_id',
@@ -30,7 +30,7 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return FORUMS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/group_description.php b/phpBB/phpbb/textreparser/plugins/group_description.php
index c83079827c..ddd0e1d1c5 100644
--- a/phpBB/phpbb/textreparser/plugins/group_description.php
+++ b/phpBB/phpbb/textreparser/plugins/group_description.php
@@ -18,7 +18,7 @@ class group_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'group_id',
@@ -30,7 +30,7 @@ class group_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return GROUPS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/pm_text.php b/phpBB/phpbb/textreparser/plugins/pm_text.php
index f4d87525df..4d06a2878b 100644
--- a/phpBB/phpbb/textreparser/plugins/pm_text.php
+++ b/phpBB/phpbb/textreparser/plugins/pm_text.php
@@ -18,7 +18,7 @@ class pm_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'msg_id',
@@ -33,7 +33,7 @@ class pm_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return PRIVMSGS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/poll_option.php b/phpBB/phpbb/textreparser/plugins/poll_option.php
index f074f1866d..cc28599737 100644
--- a/phpBB/phpbb/textreparser/plugins/poll_option.php
+++ b/phpBB/phpbb/textreparser/plugins/poll_option.php
@@ -18,7 +18,7 @@ class poll_option extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'poll_option_id',
@@ -43,7 +43,7 @@ class poll_option extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return POLL_OPTIONS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/poll_title.php b/phpBB/phpbb/textreparser/plugins/poll_title.php
index e794780eba..6665d68847 100644
--- a/phpBB/phpbb/textreparser/plugins/poll_title.php
+++ b/phpBB/phpbb/textreparser/plugins/poll_title.php
@@ -18,7 +18,7 @@ class poll_title extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'topic_id',
@@ -43,7 +43,7 @@ class poll_title extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return TOPICS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/post_text.php b/phpBB/phpbb/textreparser/plugins/post_text.php
index 2b16518b03..4a07c98cea 100644
--- a/phpBB/phpbb/textreparser/plugins/post_text.php
+++ b/phpBB/phpbb/textreparser/plugins/post_text.php
@@ -18,7 +18,7 @@ class post_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'post_id',
@@ -33,7 +33,7 @@ class post_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return POSTS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/user_signature.php b/phpBB/phpbb/textreparser/plugins/user_signature.php
index 7a66f39ab6..db82d4089b 100644
--- a/phpBB/phpbb/textreparser/plugins/user_signature.php
+++ b/phpBB/phpbb/textreparser/plugins/user_signature.php
@@ -50,7 +50,7 @@ class user_signature extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'user_id',
@@ -63,7 +63,7 @@ class user_signature extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return USERS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/row_based_plugin.php b/phpBB/phpbb/textreparser/row_based_plugin.php
index b946d6532b..2be0b68411 100644
--- a/phpBB/phpbb/textreparser/row_based_plugin.php
+++ b/phpBB/phpbb/textreparser/row_based_plugin.php
@@ -35,14 +35,14 @@ abstract class row_based_plugin extends base
*
* @return array
*/
- abstract protected function get_columns();
+ abstract public function get_columns();
/**
* Return the name of the table used by this plugin
*
* @return string
*/
- abstract protected function get_table_name();
+ abstract public function get_table_name();
/**
* Add fields to given row, if applicable