19 lines
517 B
PHP
19 lines
517 B
PHP
<?php
|
|
require_once('../../../lib/base.php');
|
|
OC_JSON::checkLoggedIn();
|
|
OC_JSON::checkAppEnabled('gallery');
|
|
|
|
$a = array();
|
|
$result = OC_Gallery_Album::find(OC_User::getUser());
|
|
|
|
while ($r = $result->fetchRow()) {
|
|
$album_name = $r['album_name'];
|
|
$tmp_res = OC_Gallery_Photo::find($r['album_id']);
|
|
|
|
$a[] = array('name' => $album_name, 'numOfItems' => min($tmp_res->numRows(), 10), 'bgPath' => OC::$WEBROOT.'/data/'.OC_User::getUser().'/gallery/'.$album_name.'.png');
|
|
}
|
|
|
|
OC_JSON::success(array('albums'=>$a));
|
|
|
|
?>
|