diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-01-18 12:53:41 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-01-18 12:53:41 +0100 |
commit | b1bed49eae48692a5d621b9fe29187a533840c81 (patch) | |
tree | c29401682756569a08f1c2bf1e6f5ae7296e58b1 | |
parent | 7fac23839893d0a9bd278ed8bc557cbd8ce90dd9 (diff) | |
download | forums-b1bed49eae48692a5d621b9fe29187a533840c81.tar forums-b1bed49eae48692a5d621b9fe29187a533840c81.tar.gz forums-b1bed49eae48692a5d621b9fe29187a533840c81.tar.bz2 forums-b1bed49eae48692a5d621b9fe29187a533840c81.tar.xz forums-b1bed49eae48692a5d621b9fe29187a533840c81.zip |
[ticket/11201] Add variables to classes and add constructor doc blocks
PHPBB3-11201
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_base.php | 23 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_bool.php | 37 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_date.php | 30 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_dropdown.php | 37 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_int.php | 23 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_string.php | 23 | ||||
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_text.php | 23 |
7 files changed, 196 insertions, 0 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_base.php b/phpBB/phpbb/profilefields/type/type_base.php index 7aee74d9ff..195186ec86 100644 --- a/phpBB/phpbb/profilefields/type/type_base.php +++ b/phpBB/phpbb/profilefields/type/type_base.php @@ -12,7 +12,30 @@ namespace phpbb\profilefields\type; abstract class type_base implements type_interface { /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_bool.php b/phpBB/phpbb/profilefields/type/type_bool.php index a44e3ee770..f5f9003e6f 100644 --- a/phpBB/phpbb/profilefields/type/type_bool.php +++ b/phpBB/phpbb/profilefields/type/type_bool.php @@ -12,7 +12,44 @@ namespace phpbb\profilefields\type; class type_bool extends type_base { /** + * Profile fields language helper + * @var \phpbb\profilefields\lang_helper + */ + protected $lang_helper; + + /** + * Profile fields object + * @var \phpbb\profilefields\profilefields + */ + protected $profilefields; + + /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\profilefields\lang_helper $lang_helper Profile fields language helper + * @param \phpbb\profilefields\profilefields $profilefields Profile fields object + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\profilefields\lang_helper $lang_helper, \phpbb\profilefields\profilefields $profilefields, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_date.php b/phpBB/phpbb/profilefields/type/type_date.php index e59c959f5d..9b13cbac2e 100644 --- a/phpBB/phpbb/profilefields/type/type_date.php +++ b/phpBB/phpbb/profilefields/type/type_date.php @@ -12,7 +12,37 @@ namespace phpbb\profilefields\type; class type_date extends type_base { /** + * Profile fields object + * @var \phpbb\profilefields\profilefields + */ + protected $profilefields; + + /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\profilefields\profilefields $profilefields Profile fields object + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\profilefields\profilefields $profilefields, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_dropdown.php b/phpBB/phpbb/profilefields/type/type_dropdown.php index 3645ae773c..6bbd3f0842 100644 --- a/phpBB/phpbb/profilefields/type/type_dropdown.php +++ b/phpBB/phpbb/profilefields/type/type_dropdown.php @@ -12,7 +12,44 @@ namespace phpbb\profilefields\type; class type_dropdown extends type_base { /** + * Profile fields language helper + * @var \phpbb\profilefields\lang_helper + */ + protected $lang_helper; + + /** + * Profile fields object + * @var \phpbb\profilefields\profilefields + */ + protected $profilefields; + + /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\profilefields\lang_helper $lang_helper Profile fields language helper + * @param \phpbb\profilefields\profilefields $profilefields Profile fields object + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\profilefields\lang_helper $lang_helper, \phpbb\profilefields\profilefields $profilefields, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_int.php b/phpBB/phpbb/profilefields/type/type_int.php index 5b5f84d41b..8e43a6e312 100644 --- a/phpBB/phpbb/profilefields/type/type_int.php +++ b/phpBB/phpbb/profilefields/type/type_int.php @@ -12,7 +12,30 @@ namespace phpbb\profilefields\type; class type_int extends type_base { /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_string.php b/phpBB/phpbb/profilefields/type/type_string.php index 73563bc579..8b3dd1f73d 100644 --- a/phpBB/phpbb/profilefields/type/type_string.php +++ b/phpBB/phpbb/profilefields/type/type_string.php @@ -12,7 +12,30 @@ namespace phpbb\profilefields\type; class type_string extends type_string_common { /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { diff --git a/phpBB/phpbb/profilefields/type/type_text.php b/phpBB/phpbb/profilefields/type/type_text.php index 1638bffcff..26671d2129 100644 --- a/phpBB/phpbb/profilefields/type/type_text.php +++ b/phpBB/phpbb/profilefields/type/type_text.php @@ -12,7 +12,30 @@ namespace phpbb\profilefields\type; class type_text extends type_string_common { /** + * Request object + * @var \phpbb\request\request + */ + protected $request; + + /** + * Template object + * @var \phpbb\template\template + */ + protected $template; + + /** + * User object + * @var \phpbb\user + */ + protected $user; + + /** + * Construct * + * @param \phpbb\request\request $request Request object + * @param \phpbb\template\template $template Template object + * @param \phpbb\user $user User object + * @param string $language_table Table where the language strings are stored */ public function __construct(\phpbb\request\request $request, \phpbb\template\template $template, \phpbb\user $user) { |