diff options
Diffstat (limited to 'apps/calendar/ajax')
-rwxr-xr-x | apps/calendar/ajax/changeview.php | 31 | ||||
-rwxr-xr-x | apps/calendar/ajax/editevent.php | 22 | ||||
-rwxr-xr-x | apps/calendar/ajax/getcal.php | 27 | ||||
-rwxr-xr-x | apps/calendar/ajax/geteventinfo.php | 22 | ||||
-rwxr-xr-x | apps/calendar/ajax/newevent.php | 23 |
5 files changed, 125 insertions, 0 deletions
diff --git a/apps/calendar/ajax/changeview.php b/apps/calendar/ajax/changeview.php new file mode 100755 index 00000000000..a3fc8afbb75 --- /dev/null +++ b/apps/calendar/ajax/changeview.php @@ -0,0 +1,31 @@ +<?php +/************************************************* + * ownCloud - Calendar Plugin * + * * + * (c) Copyright 2011 Georg Ehrke * + * author: Georg Ehrke * + * email: ownclouddev at georgswebsite dot de * + * homepage: ownclouddev.georgswebsite.de * + * manual: ownclouddev.georgswebsite.de/manual * + * License: GNU AFFERO GENERAL PUBLIC LICENSE * + * * + * If you are not able to view the License, * + * <http://www.gnu.org/licenses/> * + * <http://ownclouddev.georgswebsite.de/license/> * + * please write to the Free Software Foundation. * + * Address: * + * 59 Temple Place, Suite 330, Boston, * + * MA 02111-1307 USA * + *************************************************/ +require_once ("../../../lib/base.php"); +if(!OC_USER::isLoggedIn()) { + die("0"); +} +$currentview = $_GET["v"]; +OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", $currentview); +if(OC_Preferences::getValue(OC_USER::getUser(), "calendar", "currentview") == $currentview){ + die("1"); +}else{ + die("0"); +} +?>
\ No newline at end of file diff --git a/apps/calendar/ajax/editevent.php b/apps/calendar/ajax/editevent.php new file mode 100755 index 00000000000..6182a60e611 --- /dev/null +++ b/apps/calendar/ajax/editevent.php @@ -0,0 +1,22 @@ +<?php +/************************************************* + * ownCloud - Calendar Plugin * + * * + * (c) Copyright 2011 Georg Ehrke * + * author: Georg Ehrke * + * email: ownclouddev at georgswebsite dot de * + * homepage: ownclouddev.georgswebsite.de * + * manual: ownclouddev.georgswebsite.de/manual * + * License: GNU AFFERO GENERAL PUBLIC LICENSE * + * * + * <http://www.gnu.org/licenses/> * + * If you are not able to view the License, * + * <http://www.gnu.org/licenses/> * + * <http://ownclouddev.georgswebsite.de/license/> * + * please write to the Free Software Foundation. * + * Address: * + * 59 Temple Place, Suite 330, Boston, * + * MA 02111-1307 USA * + *************************************************/ + +?> diff --git a/apps/calendar/ajax/getcal.php b/apps/calendar/ajax/getcal.php new file mode 100755 index 00000000000..9d28caeb3df --- /dev/null +++ b/apps/calendar/ajax/getcal.php @@ -0,0 +1,27 @@ +<?php +/************************************************* + * ownCloud - Calendar Plugin * + * * + * (c) Copyright 2011 Georg Ehrke * + * author: Georg Ehrke * + * email: ownclouddev at georgswebsite dot de * + * homepage: ownclouddev.georgswebsite.de * + * manual: ownclouddev.georgswebsite.de/manual * + * License: GNU AFFERO GENERAL PUBLIC LICENSE * + * * + * If you are not able to view the License, * + * <http://www.gnu.org/licenses/> * + * <http://ownclouddev.georgswebsite.de/license/> * + * please write to the Free Software Foundation. * + * Address: * + * 59 Temple Place, Suite 330, Boston, * + * MA 02111-1307 USA * + *************************************************/ +require_once ("../../lib/base.php"); +if(!OC_USER::isLoggedIn()) { + header("Location: " . OC_HELPER::linkTo("", "index.php")); + exit ; +} +require_once ("../lib/calendar.php"); +$calendar = new OC_Calendar_Calendar; +?>
\ No newline at end of file diff --git a/apps/calendar/ajax/geteventinfo.php b/apps/calendar/ajax/geteventinfo.php new file mode 100755 index 00000000000..6182a60e611 --- /dev/null +++ b/apps/calendar/ajax/geteventinfo.php @@ -0,0 +1,22 @@ +<?php +/************************************************* + * ownCloud - Calendar Plugin * + * * + * (c) Copyright 2011 Georg Ehrke * + * author: Georg Ehrke * + * email: ownclouddev at georgswebsite dot de * + * homepage: ownclouddev.georgswebsite.de * + * manual: ownclouddev.georgswebsite.de/manual * + * License: GNU AFFERO GENERAL PUBLIC LICENSE * + * * + * <http://www.gnu.org/licenses/> * + * If you are not able to view the License, * + * <http://www.gnu.org/licenses/> * + * <http://ownclouddev.georgswebsite.de/license/> * + * please write to the Free Software Foundation. * + * Address: * + * 59 Temple Place, Suite 330, Boston, * + * MA 02111-1307 USA * + *************************************************/ + +?> diff --git a/apps/calendar/ajax/newevent.php b/apps/calendar/ajax/newevent.php new file mode 100755 index 00000000000..a87eab02af5 --- /dev/null +++ b/apps/calendar/ajax/newevent.php @@ -0,0 +1,23 @@ +<?php +/************************************************* + * ownCloud - Calendar Plugin * + * * + * (c) Copyright 2011 Georg Ehrke * + * author: Georg Ehrke * + * email: ownclouddev at georgswebsite dot de * + * homepage: ownclouddev.georgswebsite.de * + * manual: ownclouddev.georgswebsite.de/manual * + * License: GNU AFFERO GENERAL PUBLIC LICENSE * + * * + * <http://www.gnu.org/licenses/> * + * If you are not able to view the License, * + * <http://www.gnu.org/licenses/> * + * <http://ownclouddev.georgswebsite.de/license/> * + * please write to the Free Software Foundation. * + * Address: * + * 59 Temple Place, Suite 330, Boston, * + * MA 02111-1307 USA * + *************************************************/ + +?> + |