summaryrefslogtreecommitdiffstats
path: root/lib/class/metadata.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-06 01:57:29 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-06 01:57:29 +0000
commitfb5c43b2df8a190fecfe4bf04bcd64aa1bad9c2d (patch)
tree86cee2ea4acaaf51dae5f4732d13e54213f12137 /lib/class/metadata.class.php
parent573c3014b982bd52f0b6959f51d65dfc86ae35c0 (diff)
downloadampache-fb5c43b2df8a190fecfe4bf04bcd64aa1bad9c2d.tar.gz
ampache-fb5c43b2df8a190fecfe4bf04bcd64aa1bad9c2d.tar.bz2
ampache-fb5c43b2df8a190fecfe4bf04bcd64aa1bad9c2d.zip
proof of concept, nothing one should actually use
Diffstat (limited to 'lib/class/metadata.class.php')
-rw-r--r--lib/class/metadata.class.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/class/metadata.class.php b/lib/class/metadata.class.php
new file mode 100644
index 00000000..01db6072
--- /dev/null
+++ b/lib/class/metadata.class.php
@@ -0,0 +1,44 @@
+<?php
+/*
+
+ Copyright 2001 - 2007 Ampache.org
+ All Rights Reserved
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; version 2
+ of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+
+/**
+ * metadata class
+ * This class is a abstraction layer for getting
+ * meta data for any object in Ampache, this includes
+ * album art, lyrics, id3tags, recommendations etc
+ * it makes use of Object::construct_from_array() as needed
+ */
+class metadata {
+
+ /**
+ * constructor
+ * We don't use this, as its really a static class
+ */
+ private __construct() {
+
+ // Rien a faire
+
+ } // constructor
+
+} // metadata
+
+?>