blob: 7397bfa4bf06328dd8810c9329656e95dba9bc18 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | <?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);
	}
}
 |