diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-06-18 04:23:53 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-06-18 04:23:53 +0000 |
commit | cabbf907970a6d514a4b9288abcfec3c0c6b2d55 (patch) | |
tree | 696dd21199d779c8764d035261f66e12c730dcce /lib/class/core.class.php | |
parent | 4811ddc8c70a7189d7347286a2892451109c226c (diff) | |
download | ampache-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.php | 40 |
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 +?> |