nextcloud/apps/gallery/ajax/scanForAlbums.php

12 lines
335 B
PHP
Raw Normal View History

2011-10-02 14:24:02 +04:00
<?php
2011-09-26 00:32:08 +04:00
require_once('../../../lib/base.php');
2011-10-06 23:22:01 +04:00
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('gallery');
2011-09-26 00:32:08 +04:00
require_once('../lib_scanner.php');
2011-10-06 23:22:01 +04: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-26 00:32:08 +04:00
?>