blob: edf9142317e8b356a27dace331fef0c428755e79 (
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 FilePluginFile extends ElggFile {
protected function initializeAttributes() {
parent::initializeAttributes();
$this->attributes['subtype'] = "file";
}
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();
}
}
|