本文整理汇总了PHP中model::findById方法的典型用法代码示例。如果您正苦于以下问题:PHP model::findById方法的具体用法?PHP model::findById怎么用?PHP model::findById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类model
的用法示例。
在下文中一共展示了model::findById方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setOrder
public function setOrder()
{
$request = Request::instance();
$content = $request->getContent();
$response = json_decode($content);
$oldOrder = explode(',', $response->oldOrder);
$newOrder = explode(',', $response->newOrder);
if (!empty($oldOrder) && !empty($newOrder)) {
foreach ($newOrder as $key => $value) {
$item = $this->model->findById($oldOrder[$key]);
if ($item) {
$sort_order = isset($item->sort_order) ? $item->sort_order : 0;
$items[] = array('id' => $value, 'sort_order' => $sort_order);
}
}
}
if (!empty($items)) {
foreach ($items as $item) {
$updated = $this->model->update((array) $item);
if ($updated) {
$result[] = 'ok';
}
}
}
return Response::json($result);
}
示例2: getEdit
public function getEdit($id)
{
// Title
$title = 'Boite de réception';
try {
$model = $this->model->findById($id);
} catch (RequestException $e) {
echo $e->getRequest() . "\n";
if ($e->hasResponse()) {
echo $e->getResponse() . "\n";
}
exit;
}
JavaScript::put(['locale' => LaravelLocalization::setLocale(), 'model' => (array) $model]);
$data = array('action' => 'edit', 'title' => $title, 'uriModule' => URL::to('/admin/contacts'), 'model' => $model);
// Show the page
return View::make('admin.edit', $data);
}