⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
muhasebe
/
modules
/
Tour
/
Edit File: SettingClass.php
<?php /** * Created by PhpStorm. * User: Admin * Date: 7/2/2019 * Time: 10:26 AM */ namespace Modules\Tour; use Modules\Core\Abstracts\BaseSettingsClass; use Modules\Tour\Hook; class SettingClass extends BaseSettingsClass { public static function getSettingPages() { $configs = [ 'tour' => [ 'id' => 'tour', 'title' => __("Tour Settings"), 'position'=>20, 'view'=>"Tour::admin.settings.tour", "keys"=>[ 'tour_disable', 'tour_page_search_title', 'tour_page_search_banner', 'tour_layout_search', 'tour_location_search_style', 'tour_page_limit_item', 'tour_enable_review', 'tour_review_approved', 'tour_enable_review_after_booking', 'tour_review_number_per_page', 'tour_review_stats', 'tour_page_list_seo_title', 'tour_page_list_seo_desc', 'tour_page_list_seo_image', 'tour_page_list_seo_share', 'tour_booking_buyer_fees', 'tour_vendor_create_service_must_approved_by_admin', 'tour_allow_vendor_can_change_their_booking_status', 'tour_allow_vendor_can_change_paid_amount', 'tour_allow_vendor_can_add_service_fee', 'tour_search_fields', 'tour_map_search_fields', 'tour_allow_review_after_making_completed_booking', 'tour_deposit_enable', 'tour_deposit_type', 'tour_deposit_amount', 'tour_deposit_fomular', 'tour_layout_map_option', 'tour_icon_marker_map', 'tour_map_lat_default', 'tour_map_lng_default', 'tour_map_zoom_default', 'tour_location_radius_value', 'tour_location_radius_type', ], 'html_keys'=>[ ] ] ]; return apply_filters(Hook::TOUR_SETTING_CONFIG,$configs); } }
Simpan