@@ -173,6 +173,9 @@ |
||
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | |
| 176 | + /** |
|
| 177 | + * @param string $path |
|
| 178 | + */ |
|
| 176 | 179 | protected function lng_try_filepath($path, $file_path_relative) { |
| 177 | 180 | $file_path = SN_ROOT_PHYSICAL . ($path && file_exists(SN_ROOT_PHYSICAL . $path . $file_path_relative) ? $path : '') . $file_path_relative; |
| 178 | 181 | return file_exists($file_path) ? $file_path : false; |
@@ -18,6 +18,11 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | // TODO - НЕ ОБЯЗАТЕЛЬНО ОТПРАВЛЯТЬ ЧЕРЕЗ ЕМЕЙЛ! ЕСЛИ ЭТО ФЕЙСБУЧЕК ИЛИ ВКШЕЧКА - МОЖНО ЧЕРЕЗ ЛС ПИСАТЬ!! |
| 20 | 20 | // TODO - OK 4.6 |
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * @param integer $confirmation_type_safe |
|
| 24 | + * @param string $email_unsafe |
|
| 25 | + */ |
|
| 21 | 26 | public function db_confirmation_get_latest_by_type_and_email($confirmation_type_safe, $email_unsafe) { |
| 22 | 27 | $email_safe = $this->db->db_escape($email_unsafe); |
| 23 | 28 | |
@@ -26,12 +31,21 @@ discard block |
||
| 26 | 31 | `type` = {$confirmation_type_safe} AND `email` = '{$email_safe}' ORDER BY create_time DESC LIMIT 1;", true); |
| 27 | 32 | } |
| 28 | 33 | // TODO - OK 4.6 |
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * @param integer $confirmation_type_safe |
|
| 37 | + */ |
|
| 29 | 38 | public function db_confirmation_delete_by_type_and_email($confirmation_type_safe, $email_unsafe) { |
| 30 | 39 | $email_safe = $this->db->db_escape($email_unsafe); |
| 31 | 40 | |
| 32 | 41 | return $this->db->doquery("DELETE FROM {{confirmations}} WHERE `type` = {$confirmation_type_safe} AND `email` = '{$email_safe}'"); |
| 33 | 42 | } |
| 34 | 43 | // TODO - OK 4.6 |
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @param integer $confirmation_type_safe |
|
| 47 | + * @param string $email_unsafe |
|
| 48 | + */ |
|
| 35 | 49 | public function db_confirmation_get_unique_code_by_type_and_email($confirmation_type_safe, $email_unsafe) { |
| 36 | 50 | $email_safe = $this->db->db_escape($email_unsafe); |
| 37 | 51 | |
@@ -50,6 +64,11 @@ discard block |
||
| 50 | 64 | return $confirm_code_unsafe; |
| 51 | 65 | } |
| 52 | 66 | // TODO - OK 4.6 |
| 67 | + |
|
| 68 | + /** |
|
| 69 | + * @param integer $confirmation_type_safe |
|
| 70 | + * @param string $confirmation_code_unsafe |
|
| 71 | + */ |
|
| 53 | 72 | public function db_confirmation_get_by_type_and_code($confirmation_type_safe, $confirmation_code_unsafe) { |
| 54 | 73 | $confirmation_code_safe = $this->db->db_escape($confirmation_code_unsafe); |
| 55 | 74 | |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | * Рассчёт бонуса ММ |
| 703 | 703 | * |
| 704 | 704 | * @param $dark_matter |
| 705 | - * @param bool|true $direct |
|
| 705 | + * @param boolean $direct |
|
| 706 | 706 | * @param bool|false $return_bonus |
| 707 | 707 | * |
| 708 | 708 | * @return float|int |
@@ -738,6 +738,12 @@ discard block |
||
| 738 | 738 | |
| 739 | 739 | // Дополнительная ре-трансляция адреса, если в каком-то случае платежная система ожидает нелогичный ответ |
| 740 | 740 | // Пример: иксолла при неправильно заданном пользователе в ордере ожидает НЕПРАВИЛЬНЫЙ_ОРДЕР, а не НЕПРАВИЛЬНЫЙ_ПОЛЬЗОВАТЕЛЬ |
| 741 | + |
|
| 742 | + /** |
|
| 743 | + * @param integer $error_code |
|
| 744 | + * |
|
| 745 | + * @return integer|null |
|
| 746 | + */ |
|
| 741 | 747 | function retranslate_error($error_code, $options = array()) { |
| 742 | 748 | return isset($options['retranslate_error'][$error_code]) ? $options['retranslate_error'][$error_code] : $error_code; |
| 743 | 749 | } |
@@ -103,6 +103,7 @@ |
||
| 103 | 103 | /** |
| 104 | 104 | * Set custom template location (able to use directory outside of phpBB) |
| 105 | 105 | * @access public |
| 106 | + * @param string $template_path |
|
| 106 | 107 | */ |
| 107 | 108 | function set_custom_template($template_path, $template_name, $fallback_template_path = false) |
| 108 | 109 | { |
@@ -47,6 +47,7 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * constuctor |
| 50 | + * @param template $template |
|
| 50 | 51 | */ |
| 51 | 52 | function template_compile(&$template) |
| 52 | 53 | { |
@@ -463,6 +464,7 @@ discard block |
||
| 463 | 464 | * Compile IF tags - much of this is from Smarty with |
| 464 | 465 | * some adaptions for our block level methods |
| 465 | 466 | * @access private |
| 467 | + * @param boolean $elseif |
|
| 466 | 468 | */ |
| 467 | 469 | function compile_tag_if($tag_args, $elseif) |
| 468 | 470 | { |
@@ -620,6 +622,7 @@ discard block |
||
| 620 | 622 | /** |
| 621 | 623 | * Compile DEFINE tags |
| 622 | 624 | * @access private |
| 625 | + * @param boolean $op |
|
| 623 | 626 | */ |
| 624 | 627 | function compile_tag_define($tag_args, $op) |
| 625 | 628 | { |
@@ -698,6 +701,7 @@ discard block |
||
| 698 | 701 | * parse expression |
| 699 | 702 | * This is from Smarty |
| 700 | 703 | * @access private |
| 704 | + * @param string $is_arg |
|
| 701 | 705 | */ |
| 702 | 706 | function _parse_is_expr($is_arg, $tokens) |
| 703 | 707 | { |
@@ -794,6 +798,8 @@ discard block |
||
| 794 | 798 | * If $include_last_iterator is true, then [$_childN_i] will be appended to the form shown above. |
| 795 | 799 | * NOTE: does not expect a trailing "." on the blockname. |
| 796 | 800 | * @access private |
| 801 | + * @param string $blockname |
|
| 802 | + * @param boolean $include_last_iterator |
|
| 797 | 803 | */ |
| 798 | 804 | function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) |
| 799 | 805 | { |
@@ -832,6 +838,7 @@ discard block |
||
| 832 | 838 | /** |
| 833 | 839 | * Write compiled file to cache directory |
| 834 | 840 | * @access private |
| 841 | + * @param string $data |
|
| 835 | 842 | */ |
| 836 | 843 | function compile_write($handle, $data) |
| 837 | 844 | { |
@@ -857,6 +864,7 @@ discard block |
||
| 857 | 864 | /** |
| 858 | 865 | * Minifies template w/i PHP code by removing extra spaces |
| 859 | 866 | * @access private |
| 867 | + * @return string |
|
| 860 | 868 | */ |
| 861 | 869 | function minify($html) |
| 862 | 870 | { |
@@ -151,6 +151,9 @@ |
||
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | |
| 154 | + /** |
|
| 155 | + * @param integer $user_id |
|
| 156 | + */ |
|
| 154 | 157 | public function __construct($user_id) { |
| 155 | 158 | $this->user_change($user_id); |
| 156 | 159 | } |
@@ -179,6 +179,10 @@ discard block |
||
| 179 | 179 | * @return bool |
| 180 | 180 | */ |
| 181 | 181 | // OK v4.5 |
| 182 | + |
|
| 183 | + /** |
|
| 184 | + * @param string $account_name_unsafe |
|
| 185 | + */ |
|
| 182 | 186 | public function db_get_by_name($account_name_unsafe) { |
| 183 | 187 | $this->reset(); |
| 184 | 188 | |
@@ -217,6 +221,11 @@ discard block |
||
| 217 | 221 | * |
| 218 | 222 | */ |
| 219 | 223 | // OK v4.5 |
| 224 | + |
|
| 225 | + /** |
|
| 226 | + * @param string $account_name_unsafe |
|
| 227 | + * @param string $email_unsafe |
|
| 228 | + */ |
|
| 220 | 229 | public function db_get_by_name_or_email($account_name_unsafe, $email_unsafe) { |
| 221 | 230 | $this->reset(); |
| 222 | 231 | |
@@ -232,6 +241,13 @@ discard block |
||
| 232 | 241 | * @throws Exception |
| 233 | 242 | */ |
| 234 | 243 | // OK v4.5 |
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * @param string $account_name_unsafe |
|
| 247 | + * @param string $password_raw |
|
| 248 | + * @param string $email_unsafe |
|
| 249 | + * @param string $language_unsafe |
|
| 250 | + */ |
|
| 235 | 251 | public function db_create($account_name_unsafe, $password_raw, $email_unsafe, $language_unsafe = null, $salt_unsafe = null) { |
| 236 | 252 | $this->reset(); |
| 237 | 253 | |
@@ -326,6 +342,10 @@ discard block |
||
| 326 | 342 | * @return int|string |
| 327 | 343 | */ |
| 328 | 344 | // OK 4.8 |
| 345 | + |
|
| 346 | + /** |
|
| 347 | + * @param double $metamatter |
|
| 348 | + */ |
|
| 329 | 349 | protected function db_mm_log_insert($comment, $change_type, $metamatter, $user_id_unsafe) { |
| 330 | 350 | $provider_id_safe = intval(core_auth::$main_provider->provider_id); |
| 331 | 351 | //$account_id_safe = $this->db->db_escape($this->account_id); |
@@ -493,6 +513,9 @@ discard block |
||
| 493 | 513 | return false; |
| 494 | 514 | } |
| 495 | 515 | |
| 516 | + /** |
|
| 517 | + * @param string $password |
|
| 518 | + */ |
|
| 496 | 519 | protected function password_encode_for_cookie($password) { |
| 497 | 520 | return md5("{$password}--" . $this->secret_word); |
| 498 | 521 | } |
@@ -138,7 +138,6 @@ discard block |
||
| 138 | 138 | * Попытка залогиниться с использованием метода $method |
| 139 | 139 | * @version 4.5 |
| 140 | 140 | * |
| 141 | - * @param string $method_name |
|
| 142 | 141 | */ |
| 143 | 142 | public function login() { |
| 144 | 143 | // TODO Проверяем поддерживаемость метода |
@@ -163,7 +162,7 @@ discard block |
||
| 163 | 162 | * |
| 164 | 163 | * @param $old_password_unsafe |
| 165 | 164 | * @param $new_password_unsafe |
| 166 | - * @param null $salt_unsafe |
|
| 165 | + * @param string $salt_unsafe |
|
| 167 | 166 | * |
| 168 | 167 | * @return array|bool|resource |
| 169 | 168 | */ |
@@ -176,6 +175,9 @@ discard block |
||
| 176 | 175 | return $result; |
| 177 | 176 | } |
| 178 | 177 | |
| 178 | + /** |
|
| 179 | + * @param Account $account_to_impersonate |
|
| 180 | + */ |
|
| 179 | 181 | public function impersonate($account_to_impersonate) { |
| 180 | 182 | $this->cookie_set($account_to_impersonate); |
| 181 | 183 | } |
@@ -662,6 +664,10 @@ discard block |
||
| 662 | 664 | protected function make_random_password() { |
| 663 | 665 | return core_auth::make_random_password(); |
| 664 | 666 | } |
| 667 | + |
|
| 668 | + /** |
|
| 669 | + * @param string $message |
|
| 670 | + */ |
|
| 665 | 671 | protected function flog($message, $die = false) { |
| 666 | 672 | if(!defined('DEBUG_AUTH') || !DEBUG_AUTH) { |
| 667 | 673 | return; |
@@ -41,6 +41,9 @@ discard block |
||
| 41 | 41 | return self::$cacheObject; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | + /** |
|
| 45 | + * @param string $index |
|
| 46 | + */ |
|
| 44 | 47 | public function db_loadItem($index) { |
| 45 | 48 | $result = null; |
| 46 | 49 | if($index) { |
@@ -80,6 +83,9 @@ discard block |
||
| 80 | 83 | $this->db_saveItem(array_combine(array_keys($this->defaults), array_fill(0, count($this->defaults), null))); |
| 81 | 84 | } |
| 82 | 85 | |
| 86 | + /** |
|
| 87 | + * @param integer $value |
|
| 88 | + */ |
|
| 83 | 89 | public function db_saveItem($item_list, $value = NULL) { |
| 84 | 90 | if(empty($item_list)) { |
| 85 | 91 | return; |