Created
January 17, 2016 19:05
-
-
Save derhansen/e061663bfff063e0dda1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Vender\Extension\Domain\Model; | |
| class FrontendUser extends \TYPO3\CMS\Extbase\Domain\Model\FrontendUser | |
| { | |
| /** | |
| * @var bool | |
| */ | |
| protected $disable; | |
| /** | |
| * @var bool | |
| */ | |
| protected $deleted; | |
| /** | |
| * @return bool | |
| */ | |
| public function getDisable() | |
| { | |
| return $this->disable; | |
| } | |
| /** | |
| * @param bool $disable | |
| */ | |
| public function setDisable($disable) | |
| { | |
| $this->disable = $disable; | |
| } | |
| /** | |
| * @return bool | |
| */ | |
| public function getDeleted() | |
| { | |
| return $this->deleted; | |
| } | |
| /** | |
| * @param bool $deleted | |
| */ | |
| public function setDeleted($deleted) | |
| { | |
| $this->deleted = $deleted; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment