From 6ce057f5162e18cd5190717145a13e7c29fe9da7 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 21 Jun 2009 22:42:39 +0000 Subject: added in skeleton for image and album classes --- lib/album.php | 23 +++++++++++++++++++++++ lib/image.php | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 lib/album.php create mode 100644 lib/image.php (limited to 'lib') 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 @@ +attributes['subtype'] = "album"; + } + + public function __construct($guid = null) + { + parent::__construct($guid); + } + } + +?> \ No newline at end of file diff --git a/lib/image.php b/lib/image.php new file mode 100644 index 000000000..3a23a1932 --- /dev/null +++ b/lib/image.php @@ -0,0 +1,23 @@ +attributes['subtype'] = "image"; + } + + public function __construct($guid = null) + { + parent::__construct($guid); + } + } + +?> \ No newline at end of file -- cgit v1.2.3