⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
b2c-booking.dev-unit.com
/
modules
/
Tour
/
View File Name :
ModuleProvider.php
<?php namespace Modules\Tour; use Illuminate\Support\ServiceProvider; use Modules\Core\Helpers\SitemapHelper; use Modules\ModuleServiceProvider; use Modules\Tour\Models\Tour; use Modules\User\Helpers\PermissionHelper; class ModuleProvider extends ModuleServiceProvider { public function boot(SitemapHelper $sitemapHelper) { $this->loadMigrationsFrom(__DIR__ . '/Migrations'); if(is_installed() and Tour::isEnable()){ $sitemapHelper->add("tour",[app()->make(Tour::class),'getForSitemap']); } PermissionHelper::add([ // Tour 'tour_view', 'tour_create', 'tour_update', 'tour_delete', 'tour_manage_others', 'tour_manage_attributes', ]); } /** * Register bindings in the container. * * @return void */ public function register() { $this->app->register(RouterServiceProvider::class); } public static function getBookableServices() { if(!Tour::isEnable()) return []; return [ 'tour' => Tour::class, ]; } public static function getAdminMenu() { $res = []; if(Tour::isEnable()){ $res['tour'] = [ "position"=>40, 'url' => route('tour.admin.index'), 'title' => __("Tour"), 'icon' => 'icon ion-md-umbrella', 'permission' => 'tour_view', 'children' => [ 'tour_view'=>[ 'url' => route('tour.admin.index'), 'title' => __('All Tours'), 'permission' => 'tour_view', ], 'tour_create'=>[ 'url' => route('tour.admin.create'), 'title' => __("Add Tour"), 'permission' => 'tour_create', ], 'tour_category'=>[ 'url' => route('tour.admin.category.index'), 'title' => __('Categories'), 'permission' => 'tour_manage_others', ], 'tour_attribute'=>[ 'url' => route('tour.admin.attribute.index'), 'title' => __('Attributes'), 'permission' => 'tour_manage_attributes', ], 'tour_availability'=>[ 'url' => route('tour.admin.availability.index'), 'title' => __('Availability'), 'permission' => 'tour_create', ], 'tour_booking'=>[ 'url' => route('tour.admin.booking.index'), 'title' => __('Booking Calendar'), 'permission' => 'tour_create', ], 'recovery'=>[ 'url' => route('tour.admin.recovery'), 'title' => __('Recovery'), 'permission' => 'tour_view', ], ] ]; } return $res; } public static function getUserMenu() { $res = []; if(Tour::isEnable()){ $res['tour'] = [ 'url' => route('tour.vendor.index'), 'title' => __("Manage Tour"), 'icon' => Tour::getServiceIconFeatured(), 'permission' => 'tour_view', 'position' => 40, 'children' => [ [ 'url' => route('tour.vendor.index'), 'title' => __("All Tours"), ], [ 'url' => route('tour.vendor.create'), 'title' => __("Add Tour"), 'permission' => 'tour_create', ], [ 'url' => route('tour.vendor.availability.index'), 'title' => __("Availability"), 'permission' => 'tour_create', ], [ 'url' => route('tour.vendor.recovery'), 'title' => __("Recovery"), 'permission' => 'tour_create', ], ] ]; } return $res; } public static function getMenuBuilderTypes() { if(!Tour::isEnable()) return []; return [ [ 'class' => \Modules\Tour\Models\Tour::class, 'name' => __("Tour"), 'items' => \Modules\Tour\Models\Tour::searchForMenu(), 'position'=>20 ], [ 'class' => \Modules\Tour\Models\TourCategory::class, 'name' => __("Tour Category"), 'items' => \Modules\Tour\Models\TourCategory::searchForMenu(), 'position'=>30 ], ]; } public static function getTemplateBlocks(){ if(!Tour::isEnable()) return []; return [ 'list_tours'=>"\\Modules\\Tour\\Blocks\\ListTours", 'form_search_tour'=>"\\Modules\\Tour\\Blocks\\FormSearchTour", 'box_category_tour'=>"\\Modules\\Tour\\Blocks\\BoxCategoryTour", ]; } }