本文整理匯總了PHP中Portfolio::destacar方法的典型用法代碼示例。如果您正苦於以下問題:PHP Portfolio::destacar方法的具體用法?PHP Portfolio::destacar怎麽用?PHP Portfolio::destacar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Portfolio
的用法示例。
在下文中一共展示了Portfolio::destacar方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: destacar
public function destacar()
{
//Aca se manda a la funcion editarItem de la clase Item
//y se queda con la respuesta para redirigir cual sea el caso
$respuesta = Portfolio::destacar(Input::all());
/*
if ($respuesta['error'] == true) {
return Redirect::to('admin/producto')->withErrors($respuesta['mensaje'])->withInput();
} else {
return Redirect::to('admin/producto')->with('mensaje', $respuesta['mensaje']);
}
*
*/
if ($respuesta['error'] == true) {
return Redirect::to('admin/' . $this->folder_name)->withErrors($respuesta['mensaje'])->withInput();
} else {
if (Input::get('continue') == "home") {
return Redirect::to('/')->with('mensaje', $respuesta['mensaje']);
} else {
$menu = $respuesta['data']->item()->seccionItem()->menuSeccion()->url;
$ancla = '#' . $respuesta['data']->item()->seccionItem()->estado . $respuesta['data']->item()->seccionItem()->id;
return Redirect::to('/' . $menu)->with('mensaje', $respuesta['mensaje'])->with('ancla', $ancla);
}
}
}