server/apps/gallery/ajax/createAlbum.php

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