* ***/ /** * Region */ class Region extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity { /** * title * * @var string */ protected $title = ''; /** * @var int */ protected $languageUid; /** * Returns the title * * @return string $title */ public function getTitle() { return $this->title; } /** * Sets the title * * @param string $title * @return void */ public function setTitle($title) { $this->title = $title; } /** * __construct */ public function __construct() { //Do not remove the next line: It would break the functionality $this->initStorageObjects(); } /** * Initializes all ObjectStorage properties * Do not modify this method! * It will be rewritten on each save in the extension builder * You may modify the constructor of this class instead * * @return void */ protected function initStorageObjects() { } /** * @param int $languageUid * @return void */ public function setLanguageUid($languageUid) { $this->languageUid = $languageUid; } /** * @return int */ public function getLanguageUid() { return $this->languageUid; } }