diff options
author | momo-i <webmaster@momo-i.org> | 2011-02-02 13:35:26 +0900 |
---|---|---|
committer | momo-i <webmaster@momo-i.org> | 2011-02-02 13:35:26 +0900 |
commit | bc7344c9f5d6810b8330474a69687f1c3fae961e (patch) | |
tree | 9b01425356fd4bf04d613cc1925fa69275b564e9 /lib/class/database_object.abstract.php | |
parent | 4bd8bd822bc6cc1c13066709cd5c25a4e2fa8968 (diff) | |
download | ampache-bc7344c9f5d6810b8330474a69687f1c3fae961e.tar.gz ampache-bc7344c9f5d6810b8330474a69687f1c3fae961e.tar.bz2 ampache-bc7344c9f5d6810b8330474a69687f1c3fae961e.zip |
test for phpdoc
Diffstat (limited to 'lib/class/database_object.abstract.php')
-rw-r--r-- | lib/class/database_object.abstract.php | 57 |
1 files changed, 40 insertions, 17 deletions
diff --git a/lib/class/database_object.abstract.php b/lib/class/database_object.abstract.php index 1bb368d6..af06e0d8 100644 --- a/lib/class/database_object.abstract.php +++ b/lib/class/database_object.abstract.php @@ -1,29 +1,52 @@ <?php /* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ /* - - 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. -*/ + * database_object Class + * + * PHP version 5 + * + * 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 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. + * + * @category database_object + * @package Ampache + * @author Karl Vollmer <vollmer@ampache.org> + * @copyright 2001 - 2011 Ampache.org + * @license http://opensource.org/licenses/gpl-2.0 GPLv2 + * @version PHP 5.2 + * @link http://www.ampache.org/ + * @since File available since Release 1.0 + */ /** * database_object + * * This is a general object that is extended by all of the basic * database based objects in ampache. It attempts to do some standard * caching for all of the objects to cut down on the database calls + * + * @category database_object + * @package Ampache + * @author Karl Vollmer <vollmer@ampache.org> + * @copyright 2001 - 2011 Ampache.org + * @license http://opensource.org/licenses/gpl-2.0 GPLv2 + * @version Release: + * @link http://www.ampache.org/ + * @see xxx + * @since Class available since Release 1.0 */ abstract class database_object { |