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


PHP Config::getValueByKey方法代碼示例

本文整理匯總了PHP中app\Config::getValueByKey方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::getValueByKey方法的具體用法?PHP Config::getValueByKey怎麽用?PHP Config::getValueByKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\Config的用法示例。


在下文中一共展示了Config::getValueByKey方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: sendEmail

 public function sendEmail($template, $data = [], $to, $toName, $subject, $cc = null, $bcc = null, $replyTo = null)
 {
     $result = false;
     try {
         $config = new Config();
         $messageHeader = ['from' => $config->getValueByKey('address_sender_mail'), 'fromName' => $config->getValueByKey('display_name_send_mail'), 'to' => $to, 'toName' => $toName, 'cc' => $cc, 'bcc' => $bcc, 'replyTo' => $replyTo, 'subject' => $subject];
         \Mail::send($template, $data, function ($message) use($messageHeader) {
             $message->from($messageHeader['from'], $messageHeader['fromName']);
             $message->to($messageHeader['to'], $messageHeader['toName']);
             if (!is_null($messageHeader['cc'])) {
                 $message->cc($messageHeader['cc']);
             }
             if (!is_null($messageHeader['bcc'])) {
                 $message->bcc($messageHeader['bcc']);
             }
             if (!is_null($messageHeader['replyTo'])) {
                 $message->replyTo($messageHeader['replyTo']);
             }
             $message->subject($messageHeader['subject']);
         });
         $result = true;
     } catch (Exception $e) {
         $result = ['success' => false, 'message' => $e->getMessage()];
     }
     return \Response::json($result);
 }
開發者ID:phantsang,項目名稱:1u0U39rjwJO4Vmnt99uk9j6,代碼行數:26,代碼來源:Common.php

示例2: createContact

 public function createContact(Request $request)
 {
     $validator = Validator::make($request->get('Contact'), Contact::$rules);
     if ($validator->fails()) {
         return redirect()->back()->withErrors($validator->errors());
     } else {
         $contact = new Contact();
         $contact->full_name = $request->input('Contact.full_name');
         $contact->email = $request->input('Contact.email');
         $contact->phone = $request->input('Contact.phone');
         $contact->subject = $request->input('Contact.subject');
         $contact->content = $request->input('Contact.content');
         //save data contact
         $contact->save();
         // send email
         $common = new Common();
         $config = new Config();
         $common->sendEmail('frontend.emails.contact', $data = ['contact' => $contact], $to = $config->getValueByKey('address_received_mail'), $toName = $contact->full_name, $subject = $contact->subject, $cc = $contact->email, $replyTo = $contact->email);
         //return redirect(route('contact'))->with('contact-status', 'Nội dung liên hệ của quý khách đã được gửi đến ban quản trị. Chúng tôi sẽ phản hồi quý khách trong thời gian sớm nhất. Xin cảm ơn!');
         return 1;
     }
 }
開發者ID:phantsang,項目名稱:KPh0f834yaAzxwRam833wiFL6,代碼行數:22,代碼來源:PagesController.php

示例3: createContact

 public function createContact(Request $request)
 {
     $json = json_decode('{"success":false, "message": "Đăng ký không thành công"}');
     //$arrayName = array('success' =>  false, 'message' => 'Đăng ký không thành công' );
     $validator = Validator::make($request->get('Contact'), Contact::$rules);
     if ($validator->fails()) {
         if ($request->ajax()) {
             return response()->json($json);
         } else {
             return redirect()->back()->withErrors($validator->errors());
         }
     } else {
         $contact = new Contact();
         $contact->full_name = $request->input('Contact.full_name');
         $contact->email = $request->input('Contact.email');
         $contact->phone = $request->input('Contact.phone');
         $contact->subject = $request->input('Contact.subject');
         $contact->content = $request->input('Contact.content');
         //Tiến hành lưu dữ liệu vào database
         $contact->save();
         // send email
         $common = new Common();
         $config = new Config();
         try {
             $common->sendEmail('frontend.emails.contact', $data = ['contact' => $contact], $to = $config->getValueByKey('address_received_mail'), $toName = $contact->full_name, $subject = $contact->subject, $cc = $contact->email, $replyTo = $contact->email);
         } catch (Exception $e) {
         }
         if ($request->ajax()) {
             $json->success = true;
             $json->message = 'Chúng tôi sẽ chủ động cập nhật thông tin mới nhất đến bạn.';
             return response()->json($json);
         } else {
             return redirect(route('contact'))->with('contact-status', 'Nội dung liên hệ của quý khách đã được gửi đến ban quản trị. Chúng tôi sẽ phản hồi quý khách trong thời gian sớm nhất. Xin cảm ơn!');
         }
     }
 }
開發者ID:vankhoektcn,項目名稱:Qqsipe2UY67gLO7BWrou,代碼行數:36,代碼來源:SiteProjectcontrollers_.php


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