TYPO3: Add custom set functions in extension controller
I'm creating an extension for visitors to sign up to the page. When signing up, it should create a FE user in the backend which is disabled (and will be manually enabled by an admin). So I'll need to set the disable field to 1 when creating the FE user. This is the function inside my controller: /** * action create * * @param \Vendor\FeReg\Domain\Model\Dummy $newDummy * @return void */ public function createAction(\Vendor\FeReg\Domain\Model\Dummy $newDummy) { // vars $title = $newDummy->getTitle(); $atitle = $newDummy->getAtitle(); $fname = $newDummy->getFname(); $lname = $newDummy->getLname()