@@ -72,7 +72,7 @@ |
||
72 | 72 | * |
73 | 73 | * @param int $repeat The number of times to repeat each cycle value. |
74 | 74 | * |
75 | - * @return mixed The value of the cycle iteration. |
|
75 | + * @return string The value of the cycle iteration. |
|
76 | 76 | * |
77 | 77 | */ |
78 | 78 |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | * |
370 | 370 | * @param array|string $attr Attributes to add to the form tag. |
371 | 371 | * |
372 | - * @return A <form> tag. |
|
372 | + * @return string <form> tag. |
|
373 | 373 | * |
374 | 374 | */ |
375 | 375 | |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | * |
414 | 414 | * @access public |
415 | 415 | * |
416 | - * @return The ending layout XHTML and a </form> tag. |
|
416 | + * @return string ending layout XHTML and a </form> tag. |
|
417 | 417 | * |
418 | 418 | */ |
419 | 419 | |
@@ -1345,7 +1345,7 @@ discard block |
||
1345 | 1345 | * |
1346 | 1346 | * @param array|string $attr Attributes for the element tag. |
1347 | 1347 | * |
1348 | - * @return The 'input' tag XHTML. |
|
1348 | + * @return string 'input' tag XHTML. |
|
1349 | 1349 | * |
1350 | 1350 | */ |
1351 | 1351 |
@@ -77,13 +77,6 @@ |
||
77 | 77 | * @param string $alt Alternative descriptive text for the image; |
78 | 78 | * defaults to the filename of the image. |
79 | 79 | * |
80 | - * @param int $border The border width for the image; defaults to zero. |
|
81 | - * |
|
82 | - * @param int $width The displayed image width in pixels; defaults to |
|
83 | - * the width of the image. |
|
84 | - * |
|
85 | - * @param int $height The displayed image height in pixels; defaults to |
|
86 | - * the height of the image. |
|
87 | 80 | * |
88 | 81 | */ |
89 | 82 |
@@ -88,7 +88,14 @@ |
||
88 | 88 | |
89 | 89 | /// PRIVATE SECTION |
90 | 90 | |
91 | + /** |
|
92 | + * @param integer $id |
|
93 | + */ |
|
91 | 94 | function _field_id($id) { return 'f-calendar-field-' . $id; } |
95 | + |
|
96 | + /** |
|
97 | + * @param integer $id |
|
98 | + */ |
|
92 | 99 | function _trigger_id($id) { return 'f-calendar-trigger-' . $id; } |
93 | 100 | function _gen_id() { static $id = 0; return ++$id; } |
94 | 101 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * Create a session or if the user has no account return authenticate header and 401 Unauthorized |
32 | 32 | * |
33 | 33 | * @param array &$account |
34 | - * @return int session-id |
|
34 | + * @return string session-id |
|
35 | 35 | */ |
36 | 36 | function check_access(&$account) |
37 | 37 | { |
@@ -57,8 +57,6 @@ discard block |
||
57 | 57 | /** |
58 | 58 | * Constructor |
59 | 59 | * |
60 | - * @param string $template='idots' name of the template |
|
61 | - * @return idots_framework |
|
62 | 60 | */ |
63 | 61 | function __construct($template='idots') |
64 | 62 | { |
@@ -79,8 +77,6 @@ discard block |
||
79 | 77 | /** |
80 | 78 | * Returns the html-header incl. the opening body tag |
81 | 79 | * |
82 | - * @param array $extra=array() extra attributes passed as data-attribute to egw.js |
|
83 | - * @return string with html |
|
84 | 80 | */ |
85 | 81 | function header(array $extra=array()) |
86 | 82 | { |
@@ -425,11 +421,6 @@ discard block |
||
425 | 421 | /** |
426 | 422 | * Add menu items to the topmenu template class to be displayed |
427 | 423 | * |
428 | - * @param array $app application data |
|
429 | - * @param mixed $alt_label string with alternative menu item label default value = null |
|
430 | - * @param string $urlextra string with alternate additional code inside <a>-tag |
|
431 | - * @access protected |
|
432 | - * @return void |
|
433 | 424 | */ |
434 | 425 | function _add_topmenu_item(array $app_data,$alt_label=null) |
435 | 426 | { |
@@ -444,9 +435,6 @@ discard block |
||
444 | 435 | * Add info items to the topmenu template class to be displayed |
445 | 436 | * |
446 | 437 | * @param string $content html of item |
447 | - * @param string $id=null |
|
448 | - * @access protected |
|
449 | - * @return void |
|
450 | 438 | */ |
451 | 439 | function _add_topmenu_info_item($content, $id=null) |
452 | 440 | { |
@@ -551,7 +539,6 @@ discard block |
||
551 | 539 | * @param string $appname |
552 | 540 | * @param string $menu_title |
553 | 541 | * @param array $file |
554 | - * @param string $type=null 'admin', 'preferences', 'favorites', ... |
|
555 | 542 | */ |
556 | 543 | function sidebox($appname,$menu_title,$file,$type=null) |
557 | 544 | { |
@@ -23,7 +23,6 @@ |
||
23 | 23 | /** |
24 | 24 | * Constructor, calls the contstructor of the extended class |
25 | 25 | * |
26 | - * @param string $template='jerryr' |
|
27 | 26 | * @return jerryr_framework |
28 | 27 | */ |
29 | 28 | function __construct($template='jerryr') |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | * |
258 | 258 | * @param string $table table-name |
259 | 259 | * @param array $tables array of table-names from call to MetaTables() |
260 | - * @param boolean $existence=true should we check for existence or none-existence, default existence |
|
260 | + * @param boolean $existence should we check for existence or none-existence, default existence |
|
261 | 261 | */ |
262 | 262 | function check_table($table,$tables,$existence=True) |
263 | 263 | { |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | * |
276 | 276 | * @param string $column column-name |
277 | 277 | * @param array $columns array of adodb field objects from MetaColumns($table) |
278 | - * @param boolean $existence=true should we check for existence or none-existence, default existence |
|
278 | + * @param boolean $existence should we check for existence or none-existence, default existence |
|
279 | 279 | */ |
280 | 280 | function check_column($column,$columns,$existence=True) |
281 | 281 | { |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | * @param array $columns array of strings with column-names of that index |
330 | 330 | * @param boolean $unique unique index or not |
331 | 331 | * @param array $indexes array of index-describtions from call to MetaIndexes($table) |
332 | - * @param boolean $existence=true should we check for existence or none-existence, default existence |
|
332 | + * @param boolean $existence should we check for existence or none-existence, default existence |
|
333 | 333 | */ |
334 | 334 | function check_index($columns,$unique,$indexes,$existence=True) |
335 | 335 | { |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | * |
364 | 364 | * @param array $is content read from the database via GetAll() |
365 | 365 | * @param array $should content against which we test |
366 | - * @param boolean $return_false=false return false if the check fails or die with an error-msg, default die |
|
366 | + * @param boolean $return_false return false if the check fails or die with an error-msg, default die |
|
367 | 367 | */ |
368 | 368 | function check_content($is,$should,$return_false=false) |
369 | 369 | { |
@@ -37,7 +37,6 @@ discard block |
||
37 | 37 | * |
38 | 38 | * Overwritten to set own app/template name (parent can NOT use static::APP!) |
39 | 39 | * |
40 | - * @param string $template='pixelegg' name of the template |
|
41 | 40 | */ |
42 | 41 | function __construct($template=self::APP) |
43 | 42 | { |
@@ -50,7 +49,7 @@ discard block |
||
50 | 49 | * Overwritten to load our slider.js |
51 | 50 | * |
52 | 51 | * @param array $extra |
53 | - * @return type |
|
52 | + * @return string|null |
|
54 | 53 | */ |
55 | 54 | function header(array $extra=array()) |
56 | 55 | { |