diff options
Diffstat (limited to 'mod/file/classes/FilePluginFile.php')
-rw-r--r-- | mod/file/classes/FilePluginFile.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mod/file/classes/FilePluginFile.php b/mod/file/classes/FilePluginFile.php new file mode 100644 index 000000000..7397bfa4b --- /dev/null +++ b/mod/file/classes/FilePluginFile.php @@ -0,0 +1,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); + } +} |