nextcloud/apps/calendar/ajax/share/dropdown.php

18 lines
473 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2012 Georg Ehrke <ownclouddev@georgswebsite.de>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-05-01 20:50:31 +04:00
$user = OCP\USER::getUser();
$calid = $_GET['calid'];
$calendar = OC_Calendar_Calendar::find($calid);
if($calendar['userid'] != $user){
2012-05-03 14:23:29 +04:00
OCP\JSON::error();
exit;
}
2012-05-07 01:00:36 +04:00
$tmpl = new OCP\Template('calendar', 'share.dropdown');
$tmpl->assign('calid', $calid);
$tmpl->printPage();