本文整理匯總了PHP中app\Contact::destroy方法的典型用法代碼示例。如果您正苦於以下問題:PHP Contact::destroy方法的具體用法?PHP Contact::destroy怎麽用?PHP Contact::destroy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\Contact
的用法示例。
在下文中一共展示了Contact::destroy方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: destroyContact
function destroyContact()
{
$destroy = Contact::destroy(Input::get('id'));
if ($destroy) {
return '<p style="color: green">Mesaj silindi</p>';
} else {
return '<p style="color: red">Mesaj silinmedi</p>';
}
}
示例2: deleteContact
/**
* 動作:批量刪除聯係記錄
*/
public function deleteContact(Request $request)
{
//刪除
if ($request->has('deleteids')) {
$ids = $request->input('deleteids');
//執行批量刪除聯係記錄
Contact::destroy($ids);
//更新聯係次數和最後一次聯係時間
$data = array('ret' => 0);
exit(json_encode($data));
//$this->exitJson(Core_Modret::RET_SUCC,"刪除記錄成功");
}
//$this->exitJson(Core_Modret::RET_SAVE_FAILED,"請選擇需要刪除的記錄");
$data = array('ret' => 1, 'msg' => '請選擇需要刪除的記錄');
exit(json_encode($data));
}
示例3: getDelete
/**
* Delete the given Contact.
*
* @param int $id
* @return Redirect
*/
public function getDelete($id = null)
{
$contact = Contact::destroy($id);
// Redirect to the group management page
return redirect('admin/contacts')->with('success', Lang::get('message.success.delete'));
}
示例4: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
Contact::destroy($id);
return \Response::json(array('success' => true));
}
示例5: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
//
Contact::destroy($id);
return redirect('contacts');
}
示例6: deleteContact
/**
* @param $id
* @return int
*/
protected function deleteContact($id)
{
return Contact::destroy($id);
}
示例7: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
Contact::destroy($id);
Session::flash('flash_message', 'Contact deleted!');
return redirect('admin/contact');
}