| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function initialize(): void |
||
| 33 | { |
||
| 34 | parent::initialize(); |
||
| 35 | $this->objectType = $this->getRequest()->getParam('object_type'); |
||
| 36 | $this->Modules->setConfig('currentModuleName', ucfirst($this->objectType)); |
||
| 37 | $this->set('currentModule', ['name' => $this->objectType]); |
||
| 38 | $this->set('objectType', $this->objectType); |
||
| 39 | } |
||
| 50 |