@@ -322,6 +322,9 @@ discard block |
||
| 322 | 322 | return new SSViewer($templates); |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | + /** |
|
| 326 | + * @param string $action |
|
| 327 | + */ |
|
| 325 | 328 | public function hasAction($action) { |
| 326 | 329 | return parent::hasAction($action) || $this->hasActionTemplate($action); |
| 327 | 330 | } |
@@ -385,7 +388,7 @@ discard block |
||
| 385 | 388 | * by {@link getViewer()}. |
| 386 | 389 | * |
| 387 | 390 | * @param array $params Key-value array for custom template variables (Optional) |
| 388 | - * @return string Parsed template content |
|
| 391 | + * @return HTMLText Parsed template content |
|
| 389 | 392 | */ |
| 390 | 393 | public function render($params = null) { |
| 391 | 394 | $template = $this->getViewer($this->getAction()); |
@@ -540,7 +543,7 @@ discard block |
||
| 540 | 543 | |
| 541 | 544 | /** |
| 542 | 545 | * Tests whether a redirection has been requested. |
| 543 | - * @return string If redirect() has been called, it will return the URL redirected to. Otherwise, it will |
|
| 546 | + * @return boolean If redirect() has been called, it will return the URL redirected to. Otherwise, it will |
|
| 544 | 547 | * return null; |
| 545 | 548 | */ |
| 546 | 549 | public function redirectedTo() { |
@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | /** |
| 464 | 464 | * Returns the part of the URL, 'http://www.mysite.com'. |
| 465 | 465 | * |
| 466 | - * @return boolean|string The domain from the PHP environment. Returns FALSE is this environment variable isn't |
|
| 466 | + * @return string|false The domain from the PHP environment. Returns FALSE is this environment variable isn't |
|
| 467 | 467 | * set. |
| 468 | 468 | */ |
| 469 | 469 | public static function protocolAndHost() { |
@@ -747,7 +747,6 @@ discard block |
||
| 747 | 747 | /** |
| 748 | 748 | * Takes a $_SERVER data array and extracts HTTP request headers. |
| 749 | 749 | * |
| 750 | - * @param array $data |
|
| 751 | 750 | * @return array |
| 752 | 751 | */ |
| 753 | 752 | public static function extract_request_headers(array $server) { |
@@ -780,7 +779,7 @@ discard block |
||
| 780 | 779 | |
| 781 | 780 | /** |
| 782 | 781 | * Returns true if the given file exists. |
| 783 | - * @param $file Filename specified relative to the site root |
|
| 782 | + * @param string $file Filename specified relative to the site root |
|
| 784 | 783 | */ |
| 785 | 784 | public static function fileExists($file) { |
| 786 | 785 | // replace any appended query-strings, e.g. /path/to/foo.php?bar=1 to /path/to/foo.php |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | * @param string|callable $code Either a string that can evaluate to an expression |
| 100 | 100 | * to rewrite links (depreciated), or a callable that takes a single |
| 101 | 101 | * parameter and returns the rewritten URL |
| 102 | - * @return The content with all links rewritten as per the logic specified in $code |
|
| 102 | + * @return string content with all links rewritten as per the logic specified in $code |
|
| 103 | 103 | */ |
| 104 | 104 | public static function urlRewriter($content, $code) { |
| 105 | 105 | if(!is_callable($code)) { |
@@ -243,6 +243,9 @@ discard block |
||
| 243 | 243 | return count($result) ? $result : null; |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | + /** |
|
| 247 | + * @param string $content |
|
| 248 | + */ |
|
| 246 | 249 | public static function getLinksIn($content) { |
| 247 | 250 | return self::findByTagAndAttribute($content, array("a" => "href")); |
| 248 | 251 | } |
@@ -285,6 +288,7 @@ discard block |
||
| 285 | 288 | |
| 286 | 289 | /** |
| 287 | 290 | * Set the maximum age of this page in web caches, in seconds |
| 291 | + * @param integer $age |
|
| 288 | 292 | */ |
| 289 | 293 | public static function set_cache_age($age) { |
| 290 | 294 | self::$cache_age = $age; |
@@ -296,11 +300,17 @@ discard block |
||
| 296 | 300 | self::$modification_date = $timestamp; |
| 297 | 301 | } |
| 298 | 302 | |
| 303 | + /** |
|
| 304 | + * @param integer $timestamp |
|
| 305 | + */ |
|
| 299 | 306 | public static function register_modification_timestamp($timestamp) { |
| 300 | 307 | if($timestamp > self::$modification_date) |
| 301 | 308 | self::$modification_date = $timestamp; |
| 302 | 309 | } |
| 303 | 310 | |
| 311 | + /** |
|
| 312 | + * @param string $etag |
|
| 313 | + */ |
|
| 304 | 314 | public static function register_etag($etag) { |
| 305 | 315 | self::$etag = $etag; |
| 306 | 316 | } |
@@ -219,6 +219,7 @@ discard block |
||
| 219 | 219 | |
| 220 | 220 | /** |
| 221 | 221 | * Returns true if the given class implements the given interface |
| 222 | + * @param string $interfaceName |
|
| 222 | 223 | */ |
| 223 | 224 | public static function classImplements($className, $interfaceName) { |
| 224 | 225 | return in_array($className, self::implementorsOf($interfaceName)); |
@@ -269,6 +270,9 @@ discard block |
||
| 269 | 270 | |
| 270 | 271 | private static $method_from_cache = array(); |
| 271 | 272 | |
| 273 | + /** |
|
| 274 | + * @param string $method |
|
| 275 | + */ |
|
| 272 | 276 | public static function has_method_from($class, $method, $compclass) { |
| 273 | 277 | $lClass = strtolower($class); |
| 274 | 278 | $lMethod = strtolower($method); |
@@ -83,6 +83,7 @@ |
||
| 83 | 83 | * Returns the path for a class or interface in the currently active manifest, |
| 84 | 84 | * or any previous ones if later manifests aren't set to "exclusive". |
| 85 | 85 | * |
| 86 | + * @param string $class |
|
| 86 | 87 | * @return String |
| 87 | 88 | */ |
| 88 | 89 | public function getItemPath($class) { |
@@ -214,6 +214,12 @@ discard block |
||
| 214 | 214 | set_exception_handler('exceptionHandler'); |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | + /** |
|
| 218 | + * @param integer $errno |
|
| 219 | + * @param string $errstr |
|
| 220 | + * @param string $errfile |
|
| 221 | + * @param integer $errline |
|
| 222 | + */ |
|
| 217 | 223 | public static function noticeHandler($errno, $errstr, $errfile, $errline, $errcontext) { |
| 218 | 224 | if(error_reporting() == 0) return; |
| 219 | 225 | ini_set('display_errors', 0); |
@@ -240,10 +246,10 @@ discard block |
||
| 240 | 246 | /** |
| 241 | 247 | * Handle a non-fatal warning error thrown by PHP interpreter. |
| 242 | 248 | * |
| 243 | - * @param unknown_type $errno |
|
| 244 | - * @param unknown_type $errstr |
|
| 245 | - * @param unknown_type $errfile |
|
| 246 | - * @param unknown_type $errline |
|
| 249 | + * @param integer $errno |
|
| 250 | + * @param string $errstr |
|
| 251 | + * @param string $errfile |
|
| 252 | + * @param integer $errline |
|
| 247 | 253 | * @param unknown_type $errcontext |
| 248 | 254 | */ |
| 249 | 255 | public static function warningHandler($errno, $errstr, $errfile, $errline, $errcontext) { |
@@ -274,8 +280,8 @@ discard block |
||
| 274 | 280 | * |
| 275 | 281 | * Runtime execution dies immediately once the error is generated. |
| 276 | 282 | * |
| 277 | - * @param unknown_type $errno |
|
| 278 | - * @param unknown_type $errstr |
|
| 283 | + * @param integer $errno |
|
| 284 | + * @param string $errstr |
|
| 279 | 285 | * @param unknown_type $errfile |
| 280 | 286 | * @param unknown_type $errline |
| 281 | 287 | * @param unknown_type $errcontext |
@@ -315,7 +321,7 @@ discard block |
||
| 315 | 321 | * or "tech-speak". Used in the HTTP Header and ajax responses. |
| 316 | 322 | * @param string $friendlyErrorDetail Detailed user-focused message. Is just used if no {@link ErrorPage} is found |
| 317 | 323 | * for this specific status code. |
| 318 | - * @return string HTML error message for non-ajax requests, plaintext for ajax-request. |
|
| 324 | + * @return boolean HTML error message for non-ajax requests, plaintext for ajax-request. |
|
| 319 | 325 | */ |
| 320 | 326 | public static function friendlyError($statusCode=500, $friendlyErrorMessage=null, $friendlyErrorDetail=null) { |
| 321 | 327 | if(!$friendlyErrorMessage) { |
@@ -388,6 +394,7 @@ discard block |
||
| 388 | 394 | * @param unknown_type $errfile |
| 389 | 395 | * @param unknown_type $errline |
| 390 | 396 | * @param unknown_type $errcontext |
| 397 | + * @param string $errtype |
|
| 391 | 398 | */ |
| 392 | 399 | public static function showError($errno, $errstr, $errfile, $errline, $errcontext, $errtype) { |
| 393 | 400 | if(!headers_sent()) { |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * greater than or equal to this version, a message will be raised |
| 73 | 73 | * |
| 74 | 74 | * @static |
| 75 | - * @param $ver string - |
|
| 75 | + * @param string|null $ver string - |
|
| 76 | 76 | * A php standard version string, see http://php.net/manual/en/function.version-compare.php for details. |
| 77 | 77 | * @param null $forModule string - |
| 78 | 78 | * The name of a module. The passed version will be used as the check value for |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | * Find a File object by the given filename. |
| 235 | 235 | * |
| 236 | 236 | * @param String $filename Matched against the "Name" property. |
| 237 | - * @return mixed null if not found, File object of found file |
|
| 237 | + * @return null|DataObject null if not found, File object of found file |
|
| 238 | 238 | */ |
| 239 | 239 | public static function find($filename) { |
| 240 | 240 | // Get the base file if $filename points to a resampled file |
@@ -449,6 +449,7 @@ discard block |
||
| 449 | 449 | * showing icons on filelinks, etc. |
| 450 | 450 | * Possible group values are: "audio", "mov", "zip", "image". |
| 451 | 451 | * |
| 452 | + * @param string $ext |
|
| 452 | 453 | * @return String |
| 453 | 454 | */ |
| 454 | 455 | public static function get_app_category($ext) { |
@@ -872,7 +873,6 @@ discard block |
||
| 872 | 873 | /** |
| 873 | 874 | * Convert a php.ini value (eg: 512M) to bytes |
| 874 | 875 | * |
| 875 | - * @param string $phpIniValue |
|
| 876 | 876 | * @return int |
| 877 | 877 | */ |
| 878 | 878 | public static function ini2bytes($PHPiniValue) { |
@@ -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) { |
@@ -417,6 +418,10 @@ discard block |
||
| 417 | 418 | return $useAsMinimum ? $this->resizeByWidth( $maxWidth ) : $this->resizeByHeight( $maxHeight ); |
| 418 | 419 | } |
| 419 | 420 | |
| 421 | + /** |
|
| 422 | + * @param resource $image |
|
| 423 | + * @param string $webColor |
|
| 424 | + */ |
|
| 420 | 425 | public static function color_web2gd($image, $webColor) { |
| 421 | 426 | if(substr($webColor,0,1) == "#") $webColor = substr($webColor,1); |
| 422 | 427 | $r = hexdec(substr($webColor,0,2)); |
@@ -521,6 +526,9 @@ discard block |
||
| 521 | 526 | return $output; |
| 522 | 527 | } |
| 523 | 528 | |
| 529 | + /** |
|
| 530 | + * @param string $dirname |
|
| 531 | + */ |
|
| 524 | 532 | public function makeDir($dirname) { |
| 525 | 533 | if(!file_exists(dirname($dirname))) $this->makeDir(dirname($dirname)); |
| 526 | 534 | if(!file_exists($dirname)) mkdir($dirname, Config::inst()->get('Filesystem', 'folder_create_mask')); |