summaryrefslogtreecommitdiffstats
path: root/db/feedtype.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-20 19:40:17 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-20 19:40:17 +0100
commitb9d98e336c29d15cbf669d7d735eff7c80b02414 (patch)
tree5373f6fa6c585c495f52fff6299cf125394a30fa /db/feedtype.php
parentc26baa1eb7803f2291612c866d7610679f51f6d6 (diff)
finished foldermapper
Diffstat (limited to 'db/feedtype.php')
-rw-r--r--db/feedtype.php33
1 files changed, 23 insertions, 10 deletions
diff --git a/db/feedtype.php b/db/feedtype.php
index d330a5b2a..cf23de10b 100644
--- a/db/feedtype.php
+++ b/db/feedtype.php
@@ -1,22 +1,35 @@
<?php
+
/**
-* ownCloud - News app
+* ownCloud - News
*
+* @author Alessandro Cosentino
* @author Bernhard Posselt
-* Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
-* This file is licensed under the Affero General Public License version 3 or later.
-* See the COPYING-README file
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
-namespace OCA\News;
+namespace OCA\News\Db;
class FeedType {
- const FEED = 0;
- const FOLDER = 1;
- const STARRED = 2;
- const SUBSCRIPTIONS = 3;
- const SHARED = 4;
+ const FEED = 0;
+ const FOLDER = 1;
+ const STARRED = 2;
+ const SUBSCRIPTIONS = 3;
+ const SHARED = 4;
}; \ No newline at end of file