⚝
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 :
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); } }