public function delete(GalleryItem $item) { $props = $item->toArray(); if (file_exists(ROOT . $props['fullsrc'])) { unlink(ROOT . $props['fullsrc']); } if (file_exists(ROOT . $props['lowsrc'])) { unlink(ROOT . $props['lowsrc']); } }
public function add(GalleryItem $image) { $this->items[] = $image->toArray(); $this->save(); }
public function testToArray() { $item = new GalleryItem('img', '2016', 'pathToFull', 'pathToLow'); $this->assertEquals($item->toArray(), ['description' => 'img', 'category' => '2016', 'fullsrc' => 'pathToFull', 'lowsrc' => 'pathToLow']); }