blob: 6d2b6bbeab6c29e30f2837fc9462c83fb10828d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
/**
* Override the ElggFile
*/
class LightboxPluginImage extends ElggFile {
protected function initializeAttributes() {
parent::initializeAttributes();
$this->attributes['subtype'] = "image";
}
public function __construct($guid = null) {
parent::__construct($guid);
}
public function delete() {
$thumbnails = array($this->thumbnail, $this->smallthumb, $this->largethumb);
foreach ($thumbnails as $thumbnail) {
if ($thumbnail) {
$delfile = new ElggFile();
$delfile->owner_guid = $this->owner_guid;
$delfile->setFilename($thumbnail);
$delfile->delete();
}
}
return parent::delete();
}
}
|