Exemple #1
0
 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']);
     }
 }
Exemple #2
0
 public function add(GalleryItem $image)
 {
     $this->items[] = $image->toArray();
     $this->save();
 }
Exemple #3
0
 public function testToArray()
 {
     $item = new GalleryItem('img', '2016', 'pathToFull', 'pathToLow');
     $this->assertEquals($item->toArray(), ['description' => 'img', 'category' => '2016', 'fullsrc' => 'pathToFull', 'lowsrc' => 'pathToLow']);
 }