1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php /** * Tidypics Image class * */ class TidypicsImage extends ElggFile { protected function initialise_attributes() { parent::initialise_attributes(); $this->attributes['subtype'] = "image"; } public function __construct($guid = null) { parent::__construct($guid); } } ?>