本文整理匯總了PHP中event::addEvent方法的典型用法代碼示例。如果您正苦於以下問題:PHP event::addEvent方法的具體用法?PHP event::addEvent怎麽用?PHP event::addEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類event
的用法示例。
在下文中一共展示了event::addEvent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: event
$event = new event();
$hostid = $resourceServer->getAccessToken()->getSession()->getOwnerId();
$name = $app->request->post('name');
$startdate = $app->request->post('startdate');
$enddate = $app->request->post('enddate');
$addr1 = $app->request->post('addr1');
$addr2 = $app->request->post('addr2');
$city = $app->request->post('city');
$state = $app->request->post('state');
$zip = $app->request->post('zip');
$islocal = $app->request->post('islocal');
$isvirtual = $app->request->post('isvirtual');
$ticketprice = $app->request->post('ticketprice');
$description = $app->request->post('description');
//perform insertion//
$json = $event->addEvent($hostid, $name, $startdate, $enddate, $addr1, $addr2, $city, $state, $zip, $islocal, $isvirtual, $ticketprice, $description);
//return results//
echo $json;
});
//get specific event//
$app->get('/id/:eventid/', function ($eventid) use($app, $resourceServer) {
$event = new Event();
$json = $event->getEvent($eventid);
echo $json;
});
//get events for a specific host//
$app->get('/host/', $authorize(), function () use($app, $resourceServer) {
//get currently logged in host id from session//
$hostid = $resourceServer->getAccessToken()->getSession()->getOwnerId();
$event = new Event();
$json = $event->getHostEvents($hostid);