summaryrefslogtreecommitdiffstats
path: root/lib/class/core.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-06-18 04:23:53 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-06-18 04:23:53 +0000
commitcabbf907970a6d514a4b9288abcfec3c0c6b2d55 (patch)
tree696dd21199d779c8764d035261f66e12c730dcce /lib/class/core.class.php
parent4811ddc8c70a7189d7347286a2892451109c226c (diff)
downloadampache-cabbf907970a6d514a4b9288abcfec3c0c6b2d55.tar.gz
ampache-cabbf907970a6d514a4b9288abcfec3c0c6b2d55.tar.bz2
ampache-cabbf907970a6d514a4b9288abcfec3c0c6b2d55.zip
make the live stream add work again by removing genre needs to get tag added, but I can do that later
Diffstat (limited to 'lib/class/core.class.php')
-rw-r--r--lib/class/core.class.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/class/core.class.php b/lib/class/core.class.php
new file mode 100644
index 00000000..bd0e422d
--- /dev/null
+++ b/lib/class/core.class.php
@@ -0,0 +1,40 @@
+<?php
+/*
+
+ Copyright (c) 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 v2
+ as published by the Free Software Foundation.
+
+ 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.
+
+*/
+
+/**
+ * Core
+ * This is really just a namespace class, it's full of static functions
+ * would be replaced by a namespace library once that exists in php
+ */
+class Core {
+
+ /**
+ * constructor
+ * This doesn't do anything
+ */
+ private function __construct() {
+
+ return false;
+
+ } // construction
+
+} // Core
+?>