@@ -43,7 +43,7 @@ |
||
43 | 43 | * |
44 | 44 | * @param array $data |
45 | 45 | * @param Form $form |
46 | - * @return DBHTMLText|HTTPResponse |
|
46 | + * @return null|HTTPResponse |
|
47 | 47 | */ |
48 | 48 | public function addtocampaign($data, $form) |
49 | 49 | { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | protected $recordLink; |
26 | 26 | |
27 | 27 | /** |
28 | - * @param DataObject|CMSPreviewable $record |
|
28 | + * @param CMSPreviewable $record |
|
29 | 29 | */ |
30 | 30 | public function __construct(CMSPreviewable $record) |
31 | 31 | { |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * @return DataObject |
|
79 | + * @return CMSPreviewable |
|
80 | 80 | */ |
81 | 81 | public function getRecord() |
82 | 82 | { |
@@ -137,6 +137,9 @@ |
||
137 | 137 | return $this->defaultUrl; |
138 | 138 | } |
139 | 139 | |
140 | + /** |
|
141 | + * @param string $url |
|
142 | + */ |
|
140 | 143 | public function setDefaultURL($url) |
141 | 144 | { |
142 | 145 | $this->defaultUrl = $url; |
@@ -61,7 +61,7 @@ |
||
61 | 61 | /** |
62 | 62 | * Generate an HTML list which provides links to where a file is used. |
63 | 63 | * |
64 | - * @return string |
|
64 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
65 | 65 | */ |
66 | 66 | public function BackLinkHTMLList() |
67 | 67 | { |
@@ -379,6 +379,9 @@ |
||
379 | 379 | return null; |
380 | 380 | } |
381 | 381 | |
382 | + /** |
|
383 | + * @param string $field |
|
384 | + */ |
|
382 | 385 | public function getField($field) |
383 | 386 | { |
384 | 387 | if ($this->isFieldVirtualised($field)) { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | protected $record; |
29 | 29 | |
30 | 30 | /** |
31 | - * @param DataObject|\SilverStripe\ORM\CMSPreviewable $record |
|
31 | + * @param CMSPreviewable $record |
|
32 | 32 | */ |
33 | 33 | public function __construct(CMSPreviewable $record) |
34 | 34 | { |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
82 | - * @param DataObject|CMSPreviewable $record |
|
82 | + * @param DataObject $record |
|
83 | 83 | * @return array template data |
84 | 84 | */ |
85 | 85 | public static function get_for_record($record) |
@@ -811,7 +811,7 @@ |
||
811 | 811 | * @param boolean $unlinked Whether to link page titles. |
812 | 812 | * @param boolean|string $stopAtPageType ClassName of a page to stop the upwards traversal. |
813 | 813 | * @param boolean $showHidden Include pages marked with the attribute ShowInMenus = 0 |
814 | - * @return string The breadcrumb trail. |
|
814 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText The breadcrumb trail. |
|
815 | 815 | */ |
816 | 816 | public function Breadcrumbs($maxDepth = 20, $unlinked = false, $stopAtPageType = false, $showHidden = false, $delimiter = '»') |
817 | 817 | { |
@@ -375,6 +375,9 @@ discard block |
||
375 | 375 | return 'edit'; |
376 | 376 | } |
377 | 377 | |
378 | + /** |
|
379 | + * @param string $link |
|
380 | + */ |
|
378 | 381 | public function LinkWithSearch($link) |
379 | 382 | { |
380 | 383 | // Whitelist to avoid side effects |
@@ -515,7 +518,7 @@ discard block |
||
515 | 518 | /** |
516 | 519 | * Get callback to determine template customisations for nodes |
517 | 520 | * |
518 | - * @return callable |
|
521 | + * @return \Closure |
|
519 | 522 | */ |
520 | 523 | protected function getTreeNodeCustomisations() |
521 | 524 | { |
@@ -1333,7 +1336,7 @@ discard block |
||
1333 | 1336 | * This method exclusively handles deferred ajax requests to render the |
1334 | 1337 | * pages tree deferred handler (no pjax-fragment) |
1335 | 1338 | * |
1336 | - * @return string HTML |
|
1339 | + * @return DBHTMLText HTML |
|
1337 | 1340 | */ |
1338 | 1341 | public function treeview() |
1339 | 1342 | { |
@@ -1344,7 +1347,7 @@ discard block |
||
1344 | 1347 | * Note: This method exclusively handles top level view of list view |
1345 | 1348 | * |
1346 | 1349 | * @param HTTPRequest $request |
1347 | - * @return string HTML |
|
1350 | + * @return HTTPResponse HTML |
|
1348 | 1351 | */ |
1349 | 1352 | public function listview($request) |
1350 | 1353 | { |
@@ -1698,7 +1701,7 @@ discard block |
||
1698 | 1701 | * Actually perform the publication step |
1699 | 1702 | * |
1700 | 1703 | * @param Versioned|DataObject $record |
1701 | - * @return mixed |
|
1704 | + * @return HTTPResponse|null |
|
1702 | 1705 | */ |
1703 | 1706 | public function performPublish($record) |
1704 | 1707 | { |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * Find all anchors available on the given page. |
33 | 33 | * |
34 | 34 | * @param HTTPRequest $request |
35 | - * @return array |
|
35 | + * @return string |
|
36 | 36 | */ |
37 | 37 | public function anchors(HTTPRequest $request) |
38 | 38 | { |