当前位置: 首页>>代码示例>>PHP>>正文


PHP OC_Calendar_App::generateEventOutput方法代码示例

本文整理汇总了PHP中OC_Calendar_App::generateEventOutput方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_Calendar_App::generateEventOutput方法的具体用法?PHP OC_Calendar_App::generateEventOutput怎么用?PHP OC_Calendar_App::generateEventOutput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OC_Calendar_App的用法示例。


在下文中一共展示了OC_Calendar_App::generateEventOutput方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: session_write_close

<?php

/**
 * Copyright (c) 2011, 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
require_once 'when/When.php';
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('calendar');
session_write_close();
// Look for the calendar id
$calendar_id = OC_Calendar_App::getCalendar($_GET['calendar_id'], false, false);
if ($calendar_id !== false) {
    if (!is_numeric($calendar_id['userid']) && $calendar_id['userid'] != OCP\User::getUser()) {
        OCP\JSON::error();
        exit;
    }
} else {
    $calendar_id = $_GET['calendar_id'];
}
$start = version_compare(PHP_VERSION, '5.3.0', '>=') ? DateTime::createFromFormat('U', $_GET['start']) : new DateTime('@' . $_GET['start']);
$end = version_compare(PHP_VERSION, '5.3.0', '>=') ? DateTime::createFromFormat('U', $_GET['end']) : new DateTime('@' . $_GET['end']);
$events = OC_Calendar_App::getrequestedEvents($_GET['calendar_id'], $start, $end);
$output = array();
foreach ($events as $event) {
    $output = array_merge($output, OC_Calendar_App::generateEventOutput($event, $start, $end));
}
OCP\JSON::encodedPrint(OCP\Util::sanitizeHTML($output));
开发者ID:noci2012,项目名称:owncloud,代码行数:30,代码来源:events.php

示例2: session_write_close

OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('calendar');
session_write_close();
// Look for the calendar id
$calendar_id = null;
if (strval(intval($_GET['calendar_id'])) == strval($_GET['calendar_id'])) {
    // integer for sure.
    $id = intval($_GET['calendar_id']);
    $calendarrow = OC_Calendar_App::getCalendar($id, true, false);
    // Let's at least security check otherwise we might as well use OC_Calendar_Calendar::find())
    if ($calendarrow !== false) {
        $calendar_id = $id;
    } else {
        if (OCP\Share::getItemSharedWithBySource('calendar', $id) === false) {
            OCP\JSON::encodedPrint(array());
            exit;
        }
    }
}
$calendar_id = is_null($calendar_id) ? strip_tags($_GET['calendar_id']) : $calendar_id;
$start = version_compare(PHP_VERSION, '5.3.0', '>=') ? DateTime::createFromFormat('U', $_GET['start']) : new DateTime('@' . $_GET['start']);
$end = version_compare(PHP_VERSION, '5.3.0', '>=') ? DateTime::createFromFormat('U', $_GET['end']) : new DateTime('@' . $_GET['end']);
$events = OC_Calendar_App::getrequestedEvents($calendar_id, $start, $end);
$output = array();
foreach ($events as $event) {
    $result = OC_Calendar_App::generateEventOutput($event, $start, $end);
    if (is_array($result)) {
        $output = array_merge($output, $result);
    }
}
OCP\JSON::encodedPrint($output);
开发者ID:enoch85,项目名称:owncloud-testserver,代码行数:31,代码来源:events.php


注:本文中的OC_Calendar_App::generateEventOutput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。