server/apps/gallery/ajax/scanForAlbums.php

13 lines
366 B
PHP
Raw Normal View History

2011-10-02 10:24:02 +00:00
<?php
2011-09-25 20:32:08 +00:00
require_once('../../../lib/base.php');
2011-10-06 19:22:01 +00:00
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('gallery');
2011-09-25 20:32:08 +00:00
require_once('../lib_scanner.php');
OC_GALLERY_SCANNER::cleanUp();
2011-10-06 19:22:01 +00:00
OC_JSON::success(array('albums' => OC_GALLERY_SCANNER::scan('')));
//OC_JSON::success(array('albums' => array(array('name' => 'test', 'imagesCount' => 1, 'images' => array('dupa')))));
2011-09-25 20:32:08 +00:00
?>