Server IP : 66.29.132.124 / Your IP : 3.22.217.176 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/Core/ |
Upload File : |
<?php namespace Modules\Core; use Modules\Core\Abstracts\BaseSettingsClass; class SettingClass extends BaseSettingsClass { const UPLOAD_DRIVER=['uploads','s3']; const BROADCAST_DRIVER=["null","log","pusher"]; public static function getSettingPages() { return [ // [ // 'id' => 'uploads', // 'title' => __("Upload Settings"), // 'position' => 110, // 'view' => "Core::admin.settings.groups.uploads", // "keys" => [ // 'upload_max_width', // 'upload_max_height', // 'uploads_max_size', // ], // 'html_keys' => [ // ] // ] 'advance'=>[ 'id' => 'advance', 'title' => __("Advanced Settings"), 'position'=>80, 'view' => "Core::admin.settings.groups.advance", "keys" => [ 'map_provider', 'map_gmap_key', 'google_client_secret', 'google_client_id', 'google_enable', 'facebook_client_secret', 'facebook_client_id', 'facebook_enable', 'twitter_enable', 'twitter_client_id', 'twitter_client_secret', 'recaptcha_enable', 'recaptcha_api_key', 'recaptcha_api_secret', 'head_scripts', 'body_scripts', 'footer_scripts', 'size_unit', 'cookie_agreement_enable', 'cookie_agreement_button_text', 'cookie_agreement_content', 'broadcast_driver', 'pusher_api_key', 'pusher_api_secret', 'pusher_app_id', 'pusher_cluster', 'search_open_tab', 'map_lat_default', 'map_lng_default', 'map_clustering', 'map_fit_bounds', ], 'filter_demo_mode'=>[ 'head_scripts', 'body_scripts', 'footer_scripts', 'cookie_agreement_content', 'cookie_agreement_button_text', ] ], ]; } }