1 | <?php |
||
11 | class Gallery |
||
12 | { |
||
13 | /** @var integer Table parent materialField identifier */ |
||
14 | protected $materialFieldId = null; |
||
15 | |||
16 | /** |
||
17 | * Constructor Gallery |
||
18 | * @param integer $materialId material identifier |
||
19 | * @param integer $fieldId field identifier |
||
20 | */ |
||
21 | public function __construct($materialId, $fieldId) |
||
30 | |||
31 | /** |
||
32 | * Get all images in gallery |
||
33 | * @return array |
||
34 | */ |
||
35 | public function getImages() |
||
46 | |||
47 | /** |
||
48 | * Check on empty gallery |
||
49 | * @return boolean |
||
50 | **/ |
||
51 | public function issetImages() |
||
55 | } |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.