@@ -37,6 +37,9 @@ discard block |
||
37 | 37 | return $this->title; |
38 | 38 | } |
39 | 39 | |
40 | + /** |
|
41 | + * @param string $title |
|
42 | + */ |
|
40 | 43 | function setTitle($title) |
41 | 44 | { |
42 | 45 | $this->title = $title; |
@@ -48,6 +51,9 @@ discard block |
||
48 | 51 | return $this->value; |
49 | 52 | } |
50 | 53 | |
54 | + /** |
|
55 | + * @param string $Value |
|
56 | + */ |
|
51 | 57 | function setValue($Value) |
52 | 58 | { |
53 | 59 | $this->value = $Value; |
@@ -57,6 +57,10 @@ discard block |
||
57 | 57 | |
58 | 58 | protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_TIME; |
59 | 59 | |
60 | + /** |
|
61 | + * @param string $name |
|
62 | + * @param string $title |
|
63 | + */ |
|
60 | 64 | public function __construct($name, $title = null, $value = "") |
61 | 65 | { |
62 | 66 | if (!$this->locale) { |
@@ -231,7 +235,7 @@ discard block |
||
231 | 235 | |
232 | 236 | /** |
233 | 237 | * @param String $name Optional, returns the whole configuration array if empty |
234 | - * @return mixed|array |
|
238 | + * @return string|null |
|
235 | 239 | */ |
236 | 240 | public function getConfig($name = null) |
237 | 241 | { |
@@ -250,6 +254,9 @@ discard block |
||
250 | 254 | return $this->castedCopy('SilverStripe\\Forms\\TimeField_Readonly'); |
251 | 255 | } |
252 | 256 | |
257 | + /** |
|
258 | + * @param string $class |
|
259 | + */ |
|
253 | 260 | public function castedCopy($class) |
254 | 261 | { |
255 | 262 | $copy = parent::castedCopy($class); |
@@ -238,7 +238,7 @@ |
||
238 | 238 | |
239 | 239 | /** |
240 | 240 | * @param array $properties |
241 | - * @return string |
|
241 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
242 | 242 | */ |
243 | 243 | public function Field($properties = array()) |
244 | 244 | { |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | /** |
305 | 305 | * Determine if the target folder for new uploads in is visible the field UI. |
306 | 306 | * |
307 | - * @return boolean |
|
307 | + * @return boolean|string |
|
308 | 308 | */ |
309 | 309 | public function canPreviewFolder() |
310 | 310 | { |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | * Customises a file with additional details suitable for rendering in the |
582 | 582 | * UploadField.ss template |
583 | 583 | * |
584 | - * @param ViewableData|AssetContainer $file |
|
584 | + * @param AssetContainer $file |
|
585 | 585 | * @return ViewableData_Customised |
586 | 586 | */ |
587 | 587 | protected function customiseFile(AssetContainer $file) |
@@ -690,7 +690,7 @@ discard block |
||
690 | 690 | /** |
691 | 691 | * Determine if the user has permission to upload. |
692 | 692 | * |
693 | - * @return boolean |
|
693 | + * @return boolean|string |
|
694 | 694 | */ |
695 | 695 | public function canUpload() |
696 | 696 | { |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | * Determine if the user has permission to attach existing files |
719 | 719 | * By default returns true if the user has the CMS_ACCESS_AssetAdmin permission |
720 | 720 | * |
721 | - * @return boolean |
|
721 | + * @return boolean|string |
|
722 | 722 | */ |
723 | 723 | public function canAttachExisting() |
724 | 724 | { |
@@ -178,7 +178,7 @@ |
||
178 | 178 | * |
179 | 179 | * Actually only one array argument is supported. |
180 | 180 | * |
181 | - * @param $f callback to apply |
|
181 | + * @param string $f callback to apply |
|
182 | 182 | * @param $array array |
183 | 183 | * @return array |
184 | 184 | */ |
@@ -745,7 +745,7 @@ |
||
745 | 745 | /** |
746 | 746 | * Returns item stored in list with index $key |
747 | 747 | * |
748 | - * @param mixed $offset |
|
748 | + * @param integer $offset |
|
749 | 749 | * @return DataObject |
750 | 750 | */ |
751 | 751 | public function offsetGet($offset) |
@@ -768,7 +768,7 @@ |
||
768 | 768 | * @param boolean $create Flag indicating whether the database should be created |
769 | 769 | * if it doesn't exist. If $create is false and the database doesn't exist |
770 | 770 | * then an error will be raised |
771 | - * @param int|boolean $errorLevel The level of error reporting to enable for the query, or false if no error |
|
771 | + * @param boolean $errorLevel The level of error reporting to enable for the query, or false if no error |
|
772 | 772 | * should be raised |
773 | 773 | * @return boolean Flag indicating success |
774 | 774 | */ |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | * - array('fields' => array('A','B','C'), 'type' => 'index/unique/fulltext'): This gives you full |
332 | 332 | * control over the index. |
333 | 333 | * @param boolean $hasAutoIncPK A flag indicating that the primary key on this table is an autoincrement type |
334 | - * @param array $options Create table options (ENGINE, etc.) |
|
334 | + * @param string|null $options Create table options (ENGINE, etc.) |
|
335 | 335 | * @param array|bool $extensions List of extensions |
336 | 336 | */ |
337 | 337 | public function requireTable( |
@@ -529,7 +529,7 @@ discard block |
||
529 | 529 | /** |
530 | 530 | * Given an index spec determines the index type |
531 | 531 | * |
532 | - * @param array|string $spec |
|
532 | + * @param string $spec |
|
533 | 533 | * @return string |
534 | 534 | */ |
535 | 535 | protected function determineIndexType($spec) |
@@ -630,7 +630,7 @@ discard block |
||
630 | 630 | * |
631 | 631 | * @param string $table The table name. |
632 | 632 | * @param string $field The field name. |
633 | - * @param array|string $spec The field specification. If passed in array syntax, the specific database |
|
633 | + * @param string $spec The field specification. If passed in array syntax, the specific database |
|
634 | 634 | * driver takes care of the ALTER TABLE syntax. If passed as a string, its assumed to |
635 | 635 | * be prepared as a direct SQL framgment ready for insertion into ALTER TABLE. In this case you'll |
636 | 636 | * need to take care of database abstraction in your DBField subclass. |
@@ -129,6 +129,9 @@ |
||
129 | 129 | $this->query("ALTER TABLE \"$tableName\" $alterations"); |
130 | 130 | } |
131 | 131 | |
132 | + /** |
|
133 | + * @param string $tableName |
|
134 | + */ |
|
132 | 135 | public function isView($tableName) |
133 | 136 | { |
134 | 137 | $info = $this->query("SHOW /*!50002 FULL*/ TABLES LIKE '$tableName'")->record(); |