diff options
| author | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-10-29 01:48:52 +0100 | 
|---|---|---|
| committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-11-03 16:35:53 +0100 | 
| commit | 2016550a32168ee5fcf11bfdd367ce48fbcf88b1 (patch) | |
| tree | 7f38f6ef56e624f917d2e568fc143e463db0c7b4 | |
| parent | 8b7f711a184220928f42d5ec079af18d259981d0 (diff) | |
| download | forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.gz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.bz2 forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.xz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.zip  | |
[ticket/14264] Don't use constants as return values
This will prevent BC breaking in the future if we decide to
get rid of constants.
PHPBB3-14264
9 files changed, 18 insertions, 67 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml index 5d54e8dc82..dd15b9f09a 100644 --- a/phpBB/config/default/container/services_text_reparser.yml +++ b/phpBB/config/default/container/services_text_reparser.yml @@ -17,6 +17,7 @@ services:          class: phpbb\textreparser\plugins\forum_description          arguments:              - @dbal.conn +            - %tables.forums%          tags:              - { name: text_reparser.plugin } @@ -24,6 +25,7 @@ services:          class: phpbb\textreparser\plugins\forum_rules          arguments:              - @dbal.conn +            - %tables.forums%          tags:              - { name: text_reparser.plugin } @@ -31,6 +33,7 @@ services:          class: phpbb\textreparser\plugins\group_description          arguments:              - @dbal.conn +            - %tables.groups%          tags:              - { name: text_reparser.plugin } @@ -38,6 +41,7 @@ services:          class: phpbb\textreparser\plugins\pm_text          arguments:              - @dbal.conn +            - %tables.privmsgs%          tags:              - { name: text_reparser.plugin } @@ -52,6 +56,7 @@ services:          class: phpbb\textreparser\plugins\poll_title          arguments:              - @dbal.conn +            - %tables.topics%          tags:              - { name: text_reparser.plugin } @@ -59,6 +64,7 @@ services:          class: phpbb\textreparser\plugins\post_text          arguments:              - @dbal.conn +            - %tables.posts%          tags:              - { name: text_reparser.plugin } @@ -66,5 +72,6 @@ services:          class: phpbb\textreparser\plugins\user_signature          arguments:              - @dbal.conn +            - %tables.users%          tags:              - { name: text_reparser.plugin } diff --git a/phpBB/phpbb/textreparser/plugins/forum_description.php b/phpBB/phpbb/textreparser/plugins/forum_description.php index 0302dc3082..b0f5a42452 100644 --- a/phpBB/phpbb/textreparser/plugins/forum_description.php +++ b/phpBB/phpbb/textreparser/plugins/forum_description.php @@ -27,12 +27,4 @@ class forum_description extends \phpbb\textreparser\row_based_plugin  			'options'    => 'forum_desc_options',  		);  	} - -	/** -	* {@inheritdoc} -	*/ -	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 ce550225f2..d131d00707 100644 --- a/phpBB/phpbb/textreparser/plugins/forum_rules.php +++ b/phpBB/phpbb/textreparser/plugins/forum_rules.php @@ -27,12 +27,4 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin  			'options'    => 'forum_rules_options',  		);  	} - -	/** -	* {@inheritdoc} -	*/ -	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 3346ccf25e..2c45c00474 100644 --- a/phpBB/phpbb/textreparser/plugins/group_description.php +++ b/phpBB/phpbb/textreparser/plugins/group_description.php @@ -27,12 +27,4 @@ class group_description extends \phpbb\textreparser\row_based_plugin  			'options'    => 'group_desc_options',  		);  	} - -	/** -	* {@inheritdoc} -	*/ -	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 4d06a2878b..867da624ee 100644 --- a/phpBB/phpbb/textreparser/plugins/pm_text.php +++ b/phpBB/phpbb/textreparser/plugins/pm_text.php @@ -29,12 +29,4 @@ class pm_text extends \phpbb\textreparser\row_based_plugin  			'bbcode_uid'       => 'bbcode_uid',  		);  	} - -	/** -	* {@inheritdoc} -	*/ -	public function get_table_name() -	{ -		return PRIVMSGS_TABLE; -	}  } diff --git a/phpBB/phpbb/textreparser/plugins/poll_title.php b/phpBB/phpbb/textreparser/plugins/poll_title.php index 038ae0c366..76d30655c9 100644 --- a/phpBB/phpbb/textreparser/plugins/poll_title.php +++ b/phpBB/phpbb/textreparser/plugins/poll_title.php @@ -39,12 +39,4 @@ class poll_title extends \phpbb\textreparser\row_based_plugin  		return $sql;  	} - -	/** -	* {@inheritdoc} -	*/ -	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 4a07c98cea..1c98e86067 100644 --- a/phpBB/phpbb/textreparser/plugins/post_text.php +++ b/phpBB/phpbb/textreparser/plugins/post_text.php @@ -29,12 +29,4 @@ class post_text extends \phpbb\textreparser\row_based_plugin  			'bbcode_uid'       => 'bbcode_uid',  		);  	} - -	/** -	* {@inheritdoc} -	*/ -	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 f657a45d38..647d3a7b14 100644 --- a/phpBB/phpbb/textreparser/plugins/user_signature.php +++ b/phpBB/phpbb/textreparser/plugins/user_signature.php @@ -55,14 +55,6 @@ class user_signature extends \phpbb\textreparser\row_based_plugin  	}  	/** -	* {@inheritdoc} -	*/ -	public function get_table_name() -	{ -		return USERS_TABLE; -	} - -	/**  	* Save the keyoptions var from \phpbb\user  	*/  	protected function save_keyoptions() diff --git a/phpBB/phpbb/textreparser/row_based_plugin.php b/phpBB/phpbb/textreparser/row_based_plugin.php index d3ca334591..2d32104493 100644 --- a/phpBB/phpbb/textreparser/row_based_plugin.php +++ b/phpBB/phpbb/textreparser/row_based_plugin.php @@ -21,13 +21,20 @@ abstract class row_based_plugin extends base  	protected $db;  	/** +	 * @var string +	 */ +	protected $table; + +	/**  	* Constructor  	*  	* @param \phpbb\db\driver\driver_interface $db Database connection +	* @param string $table  	*/ -	public function __construct(\phpbb\db\driver\driver_interface $db) +	public function __construct(\phpbb\db\driver\driver_interface $db, $table)  	{  		$this->db = $db; +		$this->table = $table;  	}  	/** @@ -38,20 +45,13 @@ abstract class row_based_plugin extends base  	abstract public function get_columns();  	/** -	* Return the name of the table used by this plugin -	* -	* @return string -	*/ -	abstract public function get_table_name(); - -	/**  	* {@inheritdoc}  	*/  	public function get_max_id()  	{  		$columns = $this->get_columns(); -		$sql = 'SELECT MAX(' . $columns['id'] . ') AS max_id FROM ' . $this->get_table_name(); +		$sql = 'SELECT MAX(' . $columns['id'] . ') AS max_id FROM ' . $this->table;  		$result = $this->db->sql_query($sql);  		$max_id = (int) $this->db->sql_fetchfield('max_id');  		$this->db->sql_freeresult($result); @@ -96,7 +96,7 @@ abstract class row_based_plugin extends base  		}  		$sql = 'SELECT ' . implode(', ', $fields) . ' -			FROM ' . $this->get_table_name() . ' +			FROM ' . $this->table . '  			WHERE ' . $columns['id'] . ' BETWEEN ' . $min_id . ' AND ' . $max_id;  		return $sql; @@ -109,7 +109,7 @@ abstract class row_based_plugin extends base  	{  		$columns = $this->get_columns(); -		$sql = 'UPDATE ' . $this->get_table_name() . ' +		$sql = 'UPDATE ' . $this->table . '  			SET ' . $columns['text'] . " = '" . $this->db->sql_escape($record['text']) . "'  			WHERE " . $columns['id'] . ' = ' . $record['id'];  		$this->db->sql_query($sql);  | 
