diff options
Diffstat (limited to 'lib/album.php')
-rw-r--r-- | lib/album.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/album.php b/lib/album.php new file mode 100644 index 000000000..7e03ed6eb --- /dev/null +++ b/lib/album.php @@ -0,0 +1,23 @@ +<?php + /** + * Tidypics Album class + * + */ + + + class TidypicsAlbum extends ElggObject + { + protected function initialise_attributes() + { + parent::initialise_attributes(); + + $this->attributes['subtype'] = "album"; + } + + public function __construct($guid = null) + { + parent::__construct($guid); + } + } + +?>
\ No newline at end of file |