summaryrefslogtreecommitdiffstats
path: root/controller/foldercontroller.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:26 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:41 +0100
commitac423f6ca08a86d66544c50a0277e3ff00acb467 (patch)
tree9c83c6ebc3594a031ef2eb4618f601b80253408d /controller/foldercontroller.php
parent45df6bcd1339e3f6b949b257319bd85cc676fff0 (diff)
added foldercontroller + test
Diffstat (limited to 'controller/foldercontroller.php')
-rw-r--r--controller/foldercontroller.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/controller/foldercontroller.php b/controller/foldercontroller.php
new file mode 100644
index 000000000..48a0d1694
--- /dev/null
+++ b/controller/foldercontroller.php
@@ -0,0 +1,55 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Copyright
+* @author Bernhard Posselt
+* @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.
+*
+* 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\Controller;
+
+use \OCA\AppFramework\Controller\Controller;
+use \OCA\AppFramework\Core\API;
+use \OCA\AppFramework\Http\Request;
+
+
+class FolderController extends Controller {
+
+
+ public function __construct(API $api, Request $request, $folderMapper){
+ parent::__construct($api, $request);
+ $this->folderMapper = $folderMapper;
+ }
+
+
+ /**
+ * @IsAdminExemption
+ * @IsSubAdminExemption
+ * @Ajax
+ *
+ * Returns all folders
+ */
+ public function getAll(){
+ $folders = $this->folderMapper->getAll();
+ return $this->renderJSON($folders);
+ }
+
+
+} \ No newline at end of file