aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/apiController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-01 00:55:00 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-01 00:55:00 +0100
commit57c0a448f5460240708f29bf1a083354ad894689 (patch)
tree09edc97637d2214d00fecee1af14a2fd1054b6e8 /app/controllers/apiController.php
parent61aa1e2b22b9fb1714f40d413fe6acadf85596e5 (diff)
Ajout nombre d'articles non lus à l'API
Diffstat (limited to 'app/controllers/apiController.php')
-rwxr-xr-xapp/controllers/apiController.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/controllers/apiController.php b/app/controllers/apiController.php
index 88b968cb9..5ef0f5b03 100755
--- a/app/controllers/apiController.php
+++ b/app/controllers/apiController.php
@@ -1,18 +1,19 @@
<?php
class apiController extends ActionController {
- public function getFavoritesAction () {
+ public function firstAction() {
header('Content-type: application/json');
$this->view->_useLayout (false);
+ }
+ public function getFavoritesAction () {
$entryDAO = new EntryDAO ();
$entryDAO->_nbItemsPerPage (-1);
$entries_tmp = $entryDAO->listFavorites ('all', 'low_to_high');
$entries = array ();
-
foreach ($entries_tmp as $e) {
$author = $e->author ();
$feed = $e->feed (true);
@@ -32,7 +33,10 @@ class apiController extends ActionController {
$entries[$id]['url'] = $e->link ();
$entries[$id]['type'] = 'url';
}
-
+
$this->view->entries = $entries;
}
+
+ public function getNbNotReadAction() {
+ }
}