class_name = "Cloudflare/"; $this->layout = LAYOUTS['admin']; $this->session = $this->session_AuthTrait(); } final protected function getAccountModel(): AccountModel { if ($this->_accountModel === null) { $this->_accountModel = new AccountModel(); } return $this->_accountModel; } final protected function getZoneModel(): ZoneModel { if ($this->_zoneModel === null) { $this->_zoneModel = new ZoneModel(); } return $this->_zoneModel; } final protected function getRecordModel(): RecordModel { if ($this->_recordModel === null) { $this->_recordModel = new RecordModel(); } return $this->_recordModel; } protected function modify_process_submit(): void { } }