@@ -150,6 +150,7 @@ discard block |
||
| 150 | 150 | * successfully, the manipulation's cache key is removed. |
| 151 | 151 | * |
| 152 | 152 | * @param string $filename |
| 153 | + * @param string $manipulation |
|
| 153 | 154 | * @return boolean |
| 154 | 155 | */ |
| 155 | 156 | public function failedResample($filename, $manipulation) { |
@@ -428,6 +429,10 @@ discard block |
||
| 428 | 429 | return $useAsMinimum ? $this->resizeByWidth( $maxWidth ) : $this->resizeByHeight( $maxHeight ); |
| 429 | 430 | } |
| 430 | 431 | |
| 432 | + /** |
|
| 433 | + * @param resource $image |
|
| 434 | + * @param string $webColor |
|
| 435 | + */ |
|
| 431 | 436 | public static function color_web2gd($image, $webColor, $transparencyPercent = 0) { |
| 432 | 437 | if(substr($webColor,0,1) == "#") $webColor = substr($webColor,1); |
| 433 | 438 | $r = hexdec(substr($webColor,0,2)); |
@@ -546,6 +551,9 @@ discard block |
||
| 546 | 551 | return $output; |
| 547 | 552 | } |
| 548 | 553 | |
| 554 | + /** |
|
| 555 | + * @param string $dirname |
|
| 556 | + */ |
|
| 549 | 557 | public function makeDir($dirname) { |
| 550 | 558 | if(!file_exists(dirname($dirname))) $this->makeDir(dirname($dirname)); |
| 551 | 559 | if(!file_exists($dirname)) mkdir($dirname, Config::inst()->get('Filesystem', 'folder_create_mask')); |
@@ -765,7 +765,7 @@ discard block |
||
| 765 | 765 | * Extend permissions to include additional security for objects that are not published to live. |
| 766 | 766 | * |
| 767 | 767 | * @param Member $member |
| 768 | - * @return bool|null |
|
| 768 | + * @return false|null |
|
| 769 | 769 | */ |
| 770 | 770 | public function canView($member = null) { |
| 771 | 771 | // Invoke default version-gnostic canView |
@@ -839,7 +839,7 @@ discard block |
||
| 839 | 839 | * |
| 840 | 840 | * @param string $stage |
| 841 | 841 | * @param Member $member |
| 842 | - * @return bool |
|
| 842 | + * @return boolean|string |
|
| 843 | 843 | */ |
| 844 | 844 | public function canViewStage($stage = 'Live', $member = null) { |
| 845 | 845 | $oldMode = Versioned::get_reading_mode(); |
@@ -905,7 +905,7 @@ discard block |
||
| 905 | 905 | /** |
| 906 | 906 | * Is the latest version of the object published? |
| 907 | 907 | * |
| 908 | - * @return bool |
|
| 908 | + * @return string |
|
| 909 | 909 | */ |
| 910 | 910 | public function latestPublished() { |
| 911 | 911 | // Get the root data object class - this will have the version field |
@@ -1029,7 +1029,7 @@ discard block |
||
| 1029 | 1029 | * @param string $limit |
| 1030 | 1030 | * @param string $join Deprecated, use leftJoin($table, $joinClause) instead |
| 1031 | 1031 | * @param string $having |
| 1032 | - * @return DataList |
|
| 1032 | + * @return ArrayList |
|
| 1033 | 1033 | */ |
| 1034 | 1034 | public function Versions($filter = "", $sort = "", $limit = "", $join = "", $having = "") { |
| 1035 | 1035 | return $this->allVersions($filter, $sort, $limit, $join, $having); |
@@ -1043,7 +1043,7 @@ discard block |
||
| 1043 | 1043 | * @param string $limit |
| 1044 | 1044 | * @param string $join Deprecated, use leftJoin($table, $joinClause) instead |
| 1045 | 1045 | * @param string $having |
| 1046 | - * @return DataList |
|
| 1046 | + * @return ArrayList |
|
| 1047 | 1047 | */ |
| 1048 | 1048 | public function allVersions($filter = "", $sort = "", $limit = "", $join = "", $having = "") { |
| 1049 | 1049 | // Make sure the table names are not postfixed (e.g. _Live) |
@@ -1361,7 +1361,7 @@ discard block |
||
| 1361 | 1361 | * @param string $filter A filter to be inserted into the WHERE clause. |
| 1362 | 1362 | * @param string $sort A sort expression to be inserted into the ORDER BY clause. |
| 1363 | 1363 | * @param string $join Deprecated, use leftJoin($table, $joinClause) instead |
| 1364 | - * @param string|int $limit A limit on the number of records returned from the database. |
|
| 1364 | + * @param integer $limit A limit on the number of records returned from the database. |
|
| 1365 | 1365 | * @param string $containerClass The container class for the result set (default is DataList) |
| 1366 | 1366 | * |
| 1367 | 1367 | * @return DataList A modified DataList designated to the specified stage |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | * Combine the given forms into a formset with a tabbed interface |
| 497 | 497 | * |
| 498 | 498 | * @param array $forms List of LoginForm instances |
| 499 | - * @return string |
|
| 499 | + * @return HTMLText |
|
| 500 | 500 | */ |
| 501 | 501 | protected function generateLoginFormSet($forms) { |
| 502 | 502 | $viewData = new ArrayData(array( |
@@ -676,7 +676,6 @@ discard block |
||
| 676 | 676 | * - t: plaintext token |
| 677 | 677 | * |
| 678 | 678 | * @param Member $member Member object associated with this link. |
| 679 | - * @param string $autoLoginHash The auto login token. |
|
| 680 | 679 | */ |
| 681 | 680 | public static function getPasswordResetLink($member, $autologinToken) { |
| 682 | 681 | $autologinToken = urldecode($autologinToken); |
@@ -767,7 +766,7 @@ discard block |
||
| 767 | 766 | /** |
| 768 | 767 | * Factory method for the lost password form |
| 769 | 768 | * |
| 770 | - * @return Form Returns the lost password form |
|
| 769 | + * @return Security Returns the lost password form |
|
| 771 | 770 | */ |
| 772 | 771 | public function ChangePasswordForm() { |
| 773 | 772 | return Object::create('ChangePasswordForm', $this, 'ChangePasswordForm'); |
@@ -951,7 +950,7 @@ discard block |
||
| 951 | 950 | * @deprecated 4.0 Use the "Security.password_encryption_algorithm" config setting instead |
| 952 | 951 | * @param string $algorithm One of the available password encryption |
| 953 | 952 | * algorithms determined by {@link Security::get_encryption_algorithms()} |
| 954 | - * @return bool Returns TRUE if the passed algorithm was valid, otherwise FALSE. |
|
| 953 | + * @return boolean|null Returns TRUE if the passed algorithm was valid, otherwise FALSE. |
|
| 955 | 954 | */ |
| 956 | 955 | public static function set_password_encryption_algorithm($algorithm) { |
| 957 | 956 | Deprecation::notice('4.0', 'Use the "Security.password_encryption_algorithm" config setting instead'); |
@@ -1106,7 +1105,7 @@ discard block |
||
| 1106 | 1105 | /** |
| 1107 | 1106 | * Set to true to ignore access to disallowed actions, rather than returning permission failure |
| 1108 | 1107 | * Note that this is just a flag that other code needs to check with Security::ignore_disallowed_actions() |
| 1109 | - * @param $flag True or false |
|
| 1108 | + * @param boolean $flag True or false |
|
| 1110 | 1109 | */ |
| 1111 | 1110 | public static function set_ignore_disallowed_actions($flag) { |
| 1112 | 1111 | self::$ignore_disallowed_actions = $flag; |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | * |
| 81 | 81 | * Get the backend-specific resource handling the manipulations. Replaces Image::getGD() |
| 82 | 82 | * |
| 83 | - * @return mixed |
|
| 83 | + * @return ImagickBackend |
|
| 84 | 84 | */ |
| 85 | 85 | public function getImageResource() { |
| 86 | 86 | return $this; |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | * @param int $width |
| 113 | 113 | * @param int $height |
| 114 | - * @return Image_Backend |
|
| 114 | + * @return null|ImagickBackend |
|
| 115 | 115 | */ |
| 116 | 116 | public function resize($width, $height) { |
| 117 | 117 | if(!$this->valid()) return; |
@@ -141,9 +141,9 @@ discard block |
||
| 141 | 141 | /** |
| 142 | 142 | * resizeRatio |
| 143 | 143 | * |
| 144 | - * @param int $width |
|
| 145 | - * @param int $height |
|
| 146 | - * @return Image_Backend |
|
| 144 | + * @param integer $maxWidth |
|
| 145 | + * @param integer $maxHeight |
|
| 146 | + * @return null|ImagickBackend |
|
| 147 | 147 | */ |
| 148 | 148 | public function resizeRatio($maxWidth, $maxHeight, $useAsMinimum = false) { |
| 149 | 149 | if(!$this->valid()) return; |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | * resizeByWidth |
| 164 | 164 | * |
| 165 | 165 | * @param int $width |
| 166 | - * @return Image_Backend |
|
| 166 | + * @return null|ImagickBackend |
|
| 167 | 167 | */ |
| 168 | 168 | public function resizeByWidth($width) { |
| 169 | 169 | if(!$this->valid()) return; |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | * resizeByHeight |
| 179 | 179 | * |
| 180 | 180 | * @param int $height |
| 181 | - * @return Image_Backend |
|
| 181 | + * @return null|ImagickBackend |
|
| 182 | 182 | */ |
| 183 | 183 | public function resizeByHeight($height) { |
| 184 | 184 | if(!$this->valid()) return; |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | * @param int $width |
| 196 | 196 | * @param int $height |
| 197 | 197 | * @param int $transparencyPercent |
| 198 | - * @return Image_Backend |
|
| 198 | + * @return null|ImagickBackend |
|
| 199 | 199 | */ |
| 200 | 200 | public function paddedResize($width, $height, $backgroundColor = "FFFFFF", $transparencyPercent = 0) { |
| 201 | 201 | //keep the % within bounds of 0-100 |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | /** |
| 218 | 218 | * Convert a percentage (or 'true') to a two char hex code to signifiy the level of an alpha channel |
| 219 | 219 | * |
| 220 | - * @param $percent |
|
| 220 | + * @param integer $percent |
|
| 221 | 221 | * @return string |
| 222 | 222 | */ |
| 223 | 223 | public function calculateAlphaHex($percent) { |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * |
| 239 | 239 | * @param int $width |
| 240 | 240 | * @param int $height |
| 241 | - * @return Image_Backend |
|
| 241 | + * @return null|ImagickBackend |
|
| 242 | 242 | */ |
| 243 | 243 | public function croppedResize($width, $height) { |
| 244 | 244 | if(!$this->valid()) return; |