>> */ public static function getOptionInputData() { return [ 'category_icon' => "fas fa-cog", 'store_enabled' => [ 'type' => 'boolean', 'label' => 'Enable Store', 'description' => 'Enable the store for users to purchase credits.' ], 'credits_display_name' => [ 'type' => 'string', 'label' => 'Credits Display Name', 'description' => 'The name of the currency used.' ], 'initial_user_credits' => [ 'type' => 'number', 'label' => 'Initial User Credits', 'description' => 'The amount of credits a user gets when they register.' ], 'initial_server_limit' => [ 'type' => 'number', 'label' => 'Initial Server Limit', 'description' => 'The amount of servers a user can create when they register.' ], 'recaptcha_enabled' => [ 'type' => 'boolean', 'label' => 'Enable reCAPTCHA', 'description' => 'Enable reCAPTCHA on the login page.' ], 'recaptcha_site_key' => [ 'type' => 'string', 'label' => 'reCAPTCHA Site Key', 'description' => 'The site key for reCAPTCHA.' ], 'recaptcha_secret_key' => [ 'type' => 'string', 'label' => 'reCAPTCHA Secret Key', 'description' => 'The secret key for reCAPTCHA.' ], 'phpmyadmin_url' => [ 'type' => 'string', 'label' => 'phpMyAdmin URL', 'description' => 'The URL of your phpMyAdmin installation.' ], 'alert_enabled' => [ 'type' => 'boolean', 'label' => 'Enable Alert', 'description' => 'Enable an alert to be displayed on the home page.' ], 'alert_type' => [ 'type' => 'select', 'label' => 'Alert Type', 'options' => [ 'primary' => 'Blue', 'secondary' => 'Grey', 'success' => 'Green', 'danger' => 'Red', 'warning' => 'Orange', 'info' => 'Cyan', ], 'description' => 'The type of alert to display.' ], 'alert_message' => [ 'type' => 'string', 'label' => 'Alert Message', 'description' => 'The message to display in the alert.' ], 'theme' => [ 'type' => 'select', 'label' => 'Theme', 'options' => [ 'default' => 'Default', 'BlueInfinity' => 'Blue Infinity', ], 'description' => 'The theme to use for the site.' ], ]; } }