‪TYPO3CMS  10.4
AbstractFileCollection.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
27 {
28  public function ‪__construct()
29  {
30  trigger_error(
31  __CLASS__ . ' is deprecated since TYPO3 10.4 and will be removed in version 11.0',
32  E_USER_DEPRECATED
33  );
34  }
35 
39  protected ‪$object;
40 
44  public function ‪setObject(\‪TYPO3\CMS\Core\Resource\Collection\‪AbstractFileCollection ‪$object)
45  {
46  $this->object = ‪$object;
47  }
48 
52  public function ‪getObject()
53  {
54  return ‪$this->object;
55  }
56 }
‪TYPO3
‪TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection\$object
‪TYPO3 CMS Core Resource Collection AbstractFileCollection $object
Definition: AbstractFileCollection.php:38
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:23
‪TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection\getObject
‪TYPO3 CMS Core Resource Collection AbstractFileCollection getObject()
Definition: AbstractFileCollection.php:51
‪TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection\__construct
‪__construct()
Definition: AbstractFileCollection.php:28
‪TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection\setObject
‪setObject(\TYPO3\CMS\Core\Resource\Collection\AbstractFileCollection $object)
Definition: AbstractFileCollection.php:43
‪TYPO3\CMS\Extbase\Domain\Model
Definition: AbstractFileCollection.php:16
‪TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection
Definition: AbstractFileCollection.php:27