@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * qualified by its ranges. The times are from the time of calling the |
204 | 204 | * script. |
205 | 205 | * |
206 | - * @param $focus Scheduler object |
|
206 | + * @param Scheduler $focus Scheduler object |
|
207 | 207 | * @return $dateTimes array loaded with DB datetime strings derived from |
208 | 208 | * the job_interval attribute |
209 | 209 | * @return false If we the Scheduler is not in scope, return false. |
@@ -555,6 +555,11 @@ discard block |
||
555 | 555 | return $validJobTime; |
556 | 556 | } |
557 | 557 | |
558 | + /** |
|
559 | + * @param integer $type |
|
560 | + * @param string $mins |
|
561 | + * @param string $hours |
|
562 | + */ |
|
558 | 563 | function handleIntervalType($type, $value, $mins, $hours) { |
559 | 564 | global $mod_strings; |
560 | 565 | /* [0]:min [1]:hour [2]:day of month [3]:month [4]:day of week */ |
@@ -356,6 +356,7 @@ discard block |
||
356 | 356 | /** |
357 | 357 | * Delete a job |
358 | 358 | * @see SugarBean::mark_deleted($id) |
359 | + * @param string $id |
|
359 | 360 | */ |
360 | 361 | public function mark_deleted($id) |
361 | 362 | { |
@@ -595,12 +596,14 @@ discard block |
||
595 | 596 | /** |
596 | 597 | * @abstract |
597 | 598 | * @param SchedulersJob $job |
599 | + * @return void |
|
598 | 600 | */ |
599 | 601 | public function setJob(SchedulersJob $job); |
600 | 602 | |
601 | 603 | /** |
602 | 604 | * @abstract |
603 | 605 | * |
606 | + * @return boolean |
|
604 | 607 | */ |
605 | 608 | public function run($data); |
606 | 609 | } |
@@ -168,6 +168,10 @@ |
||
168 | 168 | return false; |
169 | 169 | } |
170 | 170 | |
171 | + /** |
|
172 | + * @param SugarBean $focus |
|
173 | + * @param boolean $isUpdate |
|
174 | + */ |
|
171 | 175 | static function inherit(&$focus,$isUpdate) |
172 | 176 | { |
173 | 177 | global $sugar_config; |
@@ -54,6 +54,9 @@ discard block |
||
54 | 54 | |
55 | 55 | } |
56 | 56 | |
57 | + /** |
|
58 | + * @param string $filepath |
|
59 | + */ |
|
57 | 60 | function scanForDropDowns($filepath, $module){ |
58 | 61 | $contents = file_get_contents($filepath); |
59 | 62 | $matches = array(); |
@@ -73,6 +76,7 @@ discard block |
||
73 | 76 | * |
74 | 77 | * @param string name |
75 | 78 | * @param array dropdown |
79 | + * @param string $name |
|
76 | 80 | * @return array Filtered dropdown list |
77 | 81 | */ |
78 | 82 | function filterDropDown($name,$dropdown) |
@@ -434,6 +434,10 @@ discard block |
||
434 | 434 | $_REQUEST['advanced'] = true; |
435 | 435 | |
436 | 436 | } |
437 | + |
|
438 | + /** |
|
439 | + * @param string $cache_file |
|
440 | + */ |
|
437 | 441 | function cacheXTPL($file, $cache_file, $preview_file = false) { |
438 | 442 | global $beanList; |
439 | 443 | //now if we have a backup_file lets use that instead of the original |
@@ -560,6 +564,8 @@ discard block |
||
560 | 564 | * add:2000 |
561 | 565 | * swap: 0 - 1999 |
562 | 566 | * |
567 | + * @param integer $slot_count |
|
568 | + * @param string $display_count |
|
563 | 569 | */ |
564 | 570 | function addSlotToForm($slot_count, $display_count){ |
565 | 571 | $this->form .= "\n<input type='hidden' name='slot_$slot_count' id='slot_$display_count' value='$slot_count'>"; |
@@ -599,6 +605,9 @@ discard block |
||
599 | 605 | return $newView; |
600 | 606 | } |
601 | 607 | |
608 | + /** |
|
609 | + * @param string $file |
|
610 | + */ |
|
602 | 611 | function parseOldestFile($file){ |
603 | 612 | ob_clean(); |
604 | 613 | require_once('modules/Studio/SugarBackup.php'); |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | |
464 | 464 | /** |
465 | 465 | * |
466 | - * @return the fully rendered dashlet |
|
466 | + * @return string fully rendered dashlet |
|
467 | 467 | */ |
468 | 468 | function display(){ |
469 | 469 | |
@@ -499,7 +499,7 @@ discard block |
||
499 | 499 | |
500 | 500 | /** |
501 | 501 | * |
502 | - * @return the title and the user post form |
|
502 | + * @return string title and the user post form |
|
503 | 503 | * @param $text Object |
504 | 504 | */ |
505 | 505 | function getHeader($text='') { |
@@ -579,6 +579,9 @@ discard block |
||
579 | 579 | } |
580 | 580 | } |
581 | 581 | |
582 | + /** |
|
583 | + * @param string $type |
|
584 | + */ |
|
582 | 585 | function check_enabled($type){ |
583 | 586 | global $db; |
584 | 587 | $query = "SELECT * FROM config where name = 'module_" .$type . "' and value = 1;"; |
@@ -220,7 +220,7 @@ |
||
220 | 220 | * pushFeed2 |
221 | 221 | * This method is a wrapper to pushFeed |
222 | 222 | * |
223 | - * @param $text String value of the feed's description |
|
223 | + * @param string $text String value of the feed's description |
|
224 | 224 | * @param $bean The SugarBean that is triggering the feed |
225 | 225 | * @param $link_type boolean value indicating whether or not feed is a link type |
226 | 226 | * @param $link_url String value of the URL (for link types only) |
@@ -236,6 +236,9 @@ |
||
236 | 236 | } |
237 | 237 | |
238 | 238 | |
239 | + /** |
|
240 | + * @param boolean $override_date_for_subpanel |
|
241 | + */ |
|
239 | 242 | protected function formatStartAndDueDates(&$task_fields, $dbtime, $override_date_for_subpanel) |
240 | 243 | { |
241 | 244 | global $timedate; |
@@ -103,7 +103,7 @@ |
||
103 | 103 | * Returns true if the stack contains the specified item_id, false otherwise. |
104 | 104 | * |
105 | 105 | * @param item_id the item id to search for |
106 | - * @return id of the first item on the stack |
|
106 | + * @return boolean of the first item on the stack |
|
107 | 107 | */ |
108 | 108 | public function contains($item_id) { |
109 | 109 | if(!empty($this->stackMap)){ |