| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function addGallery(array $gallery) |
||
| 25 | { |
||
| 26 | $this->gallery = new Gallery($gallery); |
||
| 27 | |||
| 28 | $this->pageTitle = _('Add gallery'); |
||
| 29 | $this->head->setTitle($this->pageTitle); |
||
| 30 | |||
| 31 | $this->path = DIR.'/admin/galleries/add'; |
||
| 32 | |||
| 33 | $this->templateType = 'add'; |
||
| 34 | |||
| 35 | $this->template = 'gallery-one'; |
||
| 36 | } |
||
| 37 | } |
||
| 38 |