@@ -45,6 +45,9 @@ |
||
| 45 | 45 | |
| 46 | 46 | return $output; |
| 47 | 47 | } |
| 48 | +/** |
|
| 49 | + * @param ElggEntity $entity |
|
| 50 | + */ |
|
| 48 | 51 | function get_blog($entity) |
| 49 | 52 | { |
| 50 | 53 | /* |
@@ -758,6 +758,9 @@ |
||
| 758 | 758 | $this->message = $this->StripSlashes($_POST['message']); |
| 759 | 759 | } |
| 760 | 760 | |
| 761 | + /** |
|
| 762 | + * @param string $error |
|
| 763 | + */ |
|
| 761 | 764 | public function add_error($error) |
| 762 | 765 | { |
| 763 | 766 | array_push($this->errors, $error); |
@@ -1744,7 +1744,7 @@ |
||
| 1744 | 1744 | * |
| 1745 | 1745 | * @author Ethan Wallace |
| 1746 | 1746 | * @param string $desc Preview text from the discussion. |
| 1747 | - * @return string HTML to create embeded video |
|
| 1747 | + * @return string[] HTML to create embeded video |
|
| 1748 | 1748 | */ |
| 1749 | 1749 | function embed_discussion_river($desc) |
| 1750 | 1750 | { |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | * @param $type |
| 15 | 15 | * @param $returnvalue |
| 16 | 16 | * @param $params |
| 17 | - * @return False to stop processing the response, True will let elgg handle the response |
|
| 17 | + * @return false|null to stop processing the response, True will let elgg handle the response |
|
| 18 | 18 | */ |
| 19 | 19 | function global_url_handler($hook, $type, $returnvalue, $params) { |
| 20 | 20 | |
@@ -82,7 +82,7 @@ |
||
| 82 | 82 | * Download an attachment: thewire_image/download/<guid>/<title> |
| 83 | 83 | * |
| 84 | 84 | * @param array $page From the page_handler function |
| 85 | - * @return bool |
|
| 85 | + * @return boolean|null |
|
| 86 | 86 | */ |
| 87 | 87 | function thewire_image_page_handler($page) { |
| 88 | 88 | |
@@ -606,6 +606,10 @@ |
||
| 606 | 606 | |
| 607 | 607 | |
| 608 | 608 | /// recursively go through the nested forums to create the breadcrumb |
| 609 | +/** |
|
| 610 | + * @param integer $forum_guid |
|
| 611 | + * @param integer $recurse_forum_guid |
|
| 612 | + */ |
|
| 609 | 613 | function assemble_nested_forums($breadcrumb, $forum_guid, $recurse_forum_guid) { |
| 610 | 614 | $lang = get_current_language(); |
| 611 | 615 | $entity = get_entity($recurse_forum_guid); |
@@ -69,6 +69,10 @@ |
||
| 69 | 69 | return delete_data("DELETE FROM pleio_request_access WHERE id = {$this->id}"); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | + /** |
|
| 73 | + * @param string $subject |
|
| 74 | + * @param string $body |
|
| 75 | + */ |
|
| 72 | 76 | private function sendEmail($subject, $body, $params = null) { |
| 73 | 77 | $site = elgg_get_site_entity(); |
| 74 | 78 | |
@@ -2,6 +2,10 @@ |
||
| 2 | 2 | namespace ModPleio; |
| 3 | 3 | |
| 4 | 4 | class Helpers { |
| 5 | + |
|
| 6 | + /** |
|
| 7 | + * @return string |
|
| 8 | + */ |
|
| 5 | 9 | public static function generateUsername($username) { |
| 6 | 10 | $hidden = access_show_hidden_entities(true); |
| 7 | 11 | |
@@ -109,6 +109,9 @@ |
||
| 109 | 109 | false |
| 110 | 110 | ); |
| 111 | 111 | |
| 112 | +/** |
|
| 113 | + * @param ElggUser $user_entity |
|
| 114 | + */ |
|
| 112 | 115 | function wires_foreach($wire_posts, $user_entity) |
| 113 | 116 | { |
| 114 | 117 | foreach ($wire_posts as $wire_post) { |