nextcloud/apps/gallery/ajax/createAlbum.php

11 lines
237 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
2011-12-08 23:04:56 +04:00
OC_Gallery_Album::create(OC_User::getUser(), $_GET['album_name']);
2011-09-26 00:32:08 +04:00
2011-10-06 23:22:01 +04:00
OC_JSON::success(array('name' => $_GET['album_name']));
2011-09-26 00:32:08 +04:00
?>