當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Contact::destroy方法代碼示例

本文整理匯總了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>';
     }
 }
開發者ID:ufukpalavar52,項目名稱:laravel-php-projelerim,代碼行數:9,代碼來源:ContactsController.php

示例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));
 }
開發者ID:sylvanasGG,項目名稱:laravel_lte,代碼行數:19,代碼來源:ExampleController.php

示例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'));
 }
開發者ID:nirlewin,項目名稱:test,代碼行數:12,代碼來源:ContactsController.php

示例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));
 }
開發者ID:jjab2020,項目名稱:Laravel5WithExtjs5,代碼行數:11,代碼來源:ContactController.php

示例5: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     Contact::destroy($id);
     return redirect('contacts');
 }
開發者ID:seahouse,項目名稱:hxerp,代碼行數:12,代碼來源:ContactsController.php

示例6: deleteContact

 /**
  * @param $id
  * @return int
  */
 protected function deleteContact($id)
 {
     return Contact::destroy($id);
 }
開發者ID:jsrc1115,項目名稱:VOIQTest,代碼行數:8,代碼來源:ContactsController.php

示例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');
 }
開發者ID:thibaultvanc,項目名稱:organit,代碼行數:13,代碼來源:ContactController.php


注:本文中的app\Contact::destroy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。