aboutsummaryrefslogtreecommitdiff
path: root/lib/album.php
blob: 7e03ed6ebc9f4bdf33d6fdf2a7cb94da945d6707 (plain)
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 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);
		}
	}
	
?>