本文整理汇总了PHP中app\models\Event::lookup方法的典型用法代码示例。如果您正苦于以下问题:PHP Event::lookup方法的具体用法?PHP Event::lookup怎么用?PHP Event::lookup使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Event
的用法示例。
在下文中一共展示了Event::lookup方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: postNew
/**
* new-Action (Formularauswertung)
*/
public function postNew()
{
$validator = Validator::make(Request::all(), Event::$rules);
// validation has passed, write events in range on that date to xml File
$geocoding_arr = Event::lookup(Request::input('adress'));
$date = strtotime(Request::input('date'));
(double) ($lat = $geocoding_arr['latitude']);
(double) ($lng = $geocoding_arr['longitude']);
//Start XML file, create parent node
$xml = new XMLWriter();
$xml->openMemory();
$xml->startDocument('1.0', 'UTF-8');
if ($validator->passes()) {
// validation has passed, save event in DB
$event = new Event();
$event->title = Request::input('name');
$event->content = Request::input('content');
$event->link = Request::input('link');
$event->type = Request::input('type');
$event->latitude = $lat;
$event->longitude = $lng;
$event->save();
return redirect('events')->with('message', 'success|Event erfolgreich angelegt!');
} else {
// validation has failed, display error messages
return redirect('events/new')->with('message', 'danger|Die folgenden Fehler sind aufgetreten:')->withErrors($validator)->withInput();
}
}
示例2: update
/**
* Update the specified resource in storage.
*
* @param int $id
* @return Response
*/
public function update($id)
{
$geocoding_arr = Event::lookup(Request::input('adress'));
$date = strtotime(Request::input('date'));
(double) ($lat = $geocoding_arr['latitude']);
(double) ($lng = $geocoding_arr['longitude']);
//
$event = new Event();
$event->title = Request::input('title');
$event->content = Request::input('content');
$event->link = Request::input('link');
$event->type = Request::input('type');
$event->latitude = $lat;
$event->longitude = $lng;
$event->save();
$response = new \stdClass();
$response->success = true;
$response->total = 1;
$response->data = $event;
return response()->json($response);
}