@@ -108,24 +108,24 @@ |
||
| 108 | 108 | */ |
| 109 | 109 | function utf8_sort($array) |
| 110 | 110 | { |
| 111 | - $old_locale = setlocale(LC_ALL, null); |
|
| 112 | - $code = api_get_language_isocode(); |
|
| 113 | - $locale_list = array($code.'.utf8', 'en.utf8','en_US.utf8','en_GB.utf8'); |
|
| 114 | - $try_sort = false; |
|
| 111 | + $old_locale = setlocale(LC_ALL, null); |
|
| 112 | + $code = api_get_language_isocode(); |
|
| 113 | + $locale_list = array($code.'.utf8', 'en.utf8','en_US.utf8','en_GB.utf8'); |
|
| 114 | + $try_sort = false; |
|
| 115 | 115 | |
| 116 | - foreach($locale_list as $locale) { |
|
| 117 | - $my_local = setlocale(LC_COLLATE, $locale); |
|
| 118 | - if ($my_local) { |
|
| 119 | - $try_sort = true; |
|
| 120 | - break; |
|
| 121 | - } |
|
| 122 | - } |
|
| 116 | + foreach($locale_list as $locale) { |
|
| 117 | + $my_local = setlocale(LC_COLLATE, $locale); |
|
| 118 | + if ($my_local) { |
|
| 119 | + $try_sort = true; |
|
| 120 | + break; |
|
| 121 | + } |
|
| 122 | + } |
|
| 123 | 123 | |
| 124 | - if ($try_sort) { |
|
| 125 | - uasort($array, 'strcoll'); |
|
| 126 | - } |
|
| 127 | - setlocale(LC_COLLATE, $old_locale); |
|
| 128 | - return $array; |
|
| 124 | + if ($try_sort) { |
|
| 125 | + uasort($array, 'strcoll'); |
|
| 126 | + } |
|
| 127 | + setlocale(LC_COLLATE, $old_locale); |
|
| 128 | + return $array; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -591,13 +591,13 @@ |
||
| 591 | 591 | |
| 592 | 592 | } |
| 593 | 593 | |
| 594 | - /** |
|
| 595 | - * Add a tab to platform |
|
| 596 | - * @param string $tabName |
|
| 597 | - * @param string $url |
|
| 598 | - * |
|
| 599 | - * @return boolean |
|
| 600 | - */ |
|
| 594 | + /** |
|
| 595 | + * Add a tab to platform |
|
| 596 | + * @param string $tabName |
|
| 597 | + * @param string $url |
|
| 598 | + * |
|
| 599 | + * @return boolean |
|
| 600 | + */ |
|
| 601 | 601 | public function addTab($tabName, $url) |
| 602 | 602 | { |
| 603 | 603 | $sql = "SELECT * FROM settings_current |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | - * This function is for editing profile info from profile_id. |
|
| 37 | - * @param int $profileId |
|
| 38 | - * @param string $name |
|
| 39 | - * @param string $description |
|
| 40 | - */ |
|
| 36 | + * This function is for editing profile info from profile_id. |
|
| 37 | + * @param int $profileId |
|
| 38 | + * @param string $name |
|
| 39 | + * @param string $description |
|
| 40 | + */ |
|
| 41 | 41 | public function updateProfileInfo($profileId, $name, $description) |
| 42 | 42 | { |
| 43 | 43 | $profileId = intval($profileId); |
@@ -128,9 +128,9 @@ discard block |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | - * This function is for getting profile info from profile_id. |
|
| 132 | - * @param int $profileId |
|
| 133 | - */ |
|
| 131 | + * This function is for getting profile info from profile_id. |
|
| 132 | + * @param int $profileId |
|
| 133 | + */ |
|
| 134 | 134 | |
| 135 | 135 | public function getProfileInfo($profileId) |
| 136 | 136 | { |
@@ -150,7 +150,7 @@ |
||
| 150 | 150 | $data = substr($png,$ipos,$chunk['size']); |
| 151 | 151 | $sections = explode("\0", $data); |
| 152 | 152 | if ($sections[0] == $key) { |
| 153 | - return $sections; |
|
| 153 | + return $sections; |
|
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | // Extract the data and the CRC |
@@ -73,7 +73,6 @@ |
||
| 73 | 73 | * Export the given HTML to PDF, using a global template |
| 74 | 74 | * |
| 75 | 75 | * @uses export/table_pdf.tpl |
| 76 | - |
|
| 77 | 76 | * @param $content |
| 78 | 77 | * @param bool|false $saveToFile |
| 79 | 78 | * @param bool|false $returnHtml |
@@ -7,8 +7,8 @@ discard block |
||
| 7 | 7 | class DateRangePicker extends HTML_QuickForm_text |
| 8 | 8 | { |
| 9 | 9 | /** |
| 10 | - * Constructor |
|
| 11 | - */ |
|
| 10 | + * Constructor |
|
| 11 | + */ |
|
| 12 | 12 | public function __construct($elementName = null, $elementLabel = null, $attributes = null) |
| 13 | 13 | { |
| 14 | 14 | if (!isset($attributes['id'])) { |
@@ -144,10 +144,10 @@ discard block |
||
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | - * @param array $dates result of parseDateRange() |
|
| 148 | - * |
|
| 149 | - * @return bool |
|
| 150 | - */ |
|
| 147 | + * @param array $dates result of parseDateRange() |
|
| 148 | + * |
|
| 149 | + * @return bool |
|
| 150 | + */ |
|
| 151 | 151 | public function validateDates($dates, $format = null) |
| 152 | 152 | { |
| 153 | 153 | if (empty($dates['start']) || empty($dates['end'])) { |
@@ -74,9 +74,9 @@ |
||
| 74 | 74 | $styleCss = $this->editor->getConfigAttribute('style'); |
| 75 | 75 | |
| 76 | 76 | if ($styleCss) { |
| 77 | - $style = true; |
|
| 77 | + $style = true; |
|
| 78 | 78 | } else { |
| 79 | - $style = false; |
|
| 79 | + $style = false; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | return $this->buildEditor($style); |
@@ -6,24 +6,24 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | class HTML_QuickForm_Rule_UsernameAvailable extends HTML_QuickForm_Rule |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * Function to check if a username is available |
|
| 11 | - * @see HTML_QuickForm_Rule |
|
| 12 | - * @param string $username Wanted username |
|
| 13 | - * @param string $current_username |
|
| 14 | - * @return boolean True if username is available |
|
| 15 | - */ |
|
| 16 | - function validate($username, $current_username = null) { |
|
| 17 | - $user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
| 9 | + /** |
|
| 10 | + * Function to check if a username is available |
|
| 11 | + * @see HTML_QuickForm_Rule |
|
| 12 | + * @param string $username Wanted username |
|
| 13 | + * @param string $current_username |
|
| 14 | + * @return boolean True if username is available |
|
| 15 | + */ |
|
| 16 | + function validate($username, $current_username = null) { |
|
| 17 | + $user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
| 18 | 18 | $username = Database::escape_string($username); |
| 19 | 19 | $current_username = Database::escape_string($current_username); |
| 20 | 20 | |
| 21 | - $sql = "SELECT * FROM $user_table WHERE username = '$username'"; |
|
| 22 | - if (!is_null($current_username)) { |
|
| 23 | - $sql .= " AND username != '$current_username'"; |
|
| 24 | - } |
|
| 25 | - $res = Database::query($sql); |
|
| 26 | - $number = Database::num_rows($res); |
|
| 27 | - return $number == 0; |
|
| 28 | - } |
|
| 21 | + $sql = "SELECT * FROM $user_table WHERE username = '$username'"; |
|
| 22 | + if (!is_null($current_username)) { |
|
| 23 | + $sql .= " AND username != '$current_username'"; |
|
| 24 | + } |
|
| 25 | + $res = Database::query($sql); |
|
| 26 | + $number = Database::num_rows($res); |
|
| 27 | + return $number == 0; |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -27,10 +27,10 @@ |
||
| 27 | 27 | */ |
| 28 | 28 | function validate($value, $options = null) |
| 29 | 29 | { |
| 30 | - if(is_array($value)) |
|
| 31 | - { |
|
| 32 | - $value = implode(null,$value); |
|
| 33 | - } |
|
| 30 | + if(is_array($value)) |
|
| 31 | + { |
|
| 32 | + $value = implode(null,$value); |
|
| 33 | + } |
|
| 34 | 34 | if ((string)$value == '') { |
| 35 | 35 | return false; |
| 36 | 36 | } |