diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2013-01-15 00:54:19 -0500 |
---|---|---|
committer | Paul Arthur <flowerysong00@yahoo.com> | 2013-01-15 01:26:38 -0500 |
commit | a1594882c732a0883fd54a52158b026d35ab8cdc (patch) | |
tree | da8143df209f2c443c933465b1a2fd951a32e036 /lib/class/stream_url.class.php | |
parent | bc6d3d1e43ffbaa1fe64515cfb411d011c81b7ff (diff) | |
download | ampache-a1594882c732a0883fd54a52158b026d35ab8cdc.tar.gz ampache-a1594882c732a0883fd54a52158b026d35ab8cdc.tar.bz2 ampache-a1594882c732a0883fd54a52158b026d35ab8cdc.zip |
Add Stream_URL class for passing them around
Diffstat (limited to 'lib/class/stream_url.class.php')
-rw-r--r-- | lib/class/stream_url.class.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/class/stream_url.class.php b/lib/class/stream_url.class.php new file mode 100644 index 00000000..c57d6339 --- /dev/null +++ b/lib/class/stream_url.class.php @@ -0,0 +1,30 @@ +<?php +/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/** + * + * LICENSE: GNU General Public License, version 2 (GPLv2) + * Copyright (c) 2001 - 2011 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. + * + */ + +// A class for passing around an URL and associated data + +class Stream_URL extends memory_object { + + public $properties = array('url', 'title', 'author', 'time', 'info_url', 'image_url', 'album', 'type'); + +} |