* @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved. * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html * * @website http://www.wpopal.com * @support http://www.wpopal.com/support/forum.html */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Opalestate_Settings_General_Tab extends Opalestate_Settings_Base_Tab { public function get_tabnav() { } public function get_tab_content( $key = '' ) { return [ 'id' => 'options_page', 'opalestate_title' => esc_html__( 'General Settings', 'opalestate-pro' ), 'show_on' => [ 'key' => 'options-page', 'value' => [ $key, ], ], 'fields' => $this->get_tab_fields(), ]; } public function get_tab_fields( $key = '' ) { return apply_filters( 'opalestate_settings_general', [ [ 'name' => esc_html__( 'General Settings', 'opalestate-pro' ), 'type' => 'opalestate_title', 'id' => 'opalestate_title_general_settings', 'before_row' => '
', 'after_row' => '
', ], [ 'name' => esc_html__( 'Login and Redirect to Dashboard page', 'opalestate-pro' ), 'desc' => esc_html__( 'Redirect to User Management Dashboard page after login.', 'opalestate-pro' ), 'id' => 'enable_login_redirect_to_dashboard', 'type' => 'switch', 'options' => [ 'on' => esc_html__( 'Enable', 'opalestate-pro' ), 'off' => esc_html__( 'Disable', 'opalestate-pro' ), ], ], [ 'name' => esc_html__( 'Register and Redirect to Dashboard page', 'opalestate-pro' ), 'desc' => esc_html__( 'Redirect to User Management Dashboard page after register.', 'opalestate-pro' ), 'id' => 'enable_register_redirect_to_dashboard', 'type' => 'switch', 'options' => [ 'on' => esc_html__( 'Enable', 'opalestate-pro' ), 'off' => esc_html__( 'Disable', 'opalestate-pro' ), ], ], [ 'name' => esc_html__( 'Image Settings', 'opalestate-pro' ), 'desc' => '', 'type' => 'opalestate_title', 'id' => 'opalestate_title_image_settings', 'before_row' => '
', 'after_row' => '
', ], [ 'name' => esc_html__( 'Agent Image Size', 'opalestate-pro' ), 'desc' => esc_html__( 'The Loop Image is an Agent that is chosen as the representative Agent in grid and list.', 'opalestate-pro' ), 'id' => 'agent_image_size', 'type' => 'select', 'default' => 'medium', 'options' => opalestate_get_featured_image_sizes(), ], [ 'name' => esc_html__( 'Agent Image Size', 'opalestate-pro' ), 'desc' => esc_html__( 'The Loop Image is an Agent that is chosen as the representative Agent in grid and list.', 'opalestate-pro' ), 'id' => 'agent_image_size', 'type' => 'select', 'default' => 'medium', 'options' => opalestate_get_featured_image_sizes(), ], [ 'name' => esc_html__( 'Loop Image Size', 'opalestate-pro' ), 'desc' => esc_html__( 'The Loop Image is an image that is chosen as the representative image in grid and list.', 'opalestate-pro' ), 'id' => 'loop_image_size', 'type' => 'select', 'default' => 'large', 'options' => opalestate_get_featured_image_sizes(), ], [ 'name' => esc_html__( 'Featured Image Size', 'opalestate-pro' ), 'desc' => esc_html__( 'The Featured Image is an image that is chosen as the representative image in single page. .', 'opalestate-pro' ), 'id' => 'featured_image_size', 'type' => 'select', 'default' => 'full', 'options' => opalestate_get_featured_image_sizes(), 'after_row' => '' . __( 'To generate images with new image sizes, you can use this Force Regenerate Thumbnails', 'opalestate-pro' ) . '', ], [ 'name' => esc_html__( 'Currency Settings', 'opalestate-pro' ), 'desc' => '', 'type' => 'opalestate_title', 'id' => 'opalestate_title_currency_settings', 'before_row' => '
', 'after_row' => '
', ], [ 'name' => esc_html__( 'Currency', 'opalestate-pro' ), 'desc' => esc_html__( 'Choose your currency. Note that some payment gateways have currency restrictions.', 'opalestate-pro' ), 'id' => 'currency', 'type' => 'select', 'options' => opalestate_get_currencies(), 'default' => 'USD', ], [ 'name' => esc_html__( 'Currency Position', 'opalestate-pro' ), 'desc' => 'Choose the position of the currency sign.', 'id' => 'currency_position', 'type' => 'select', 'options' => [ 'before' => esc_html__( 'Before - $10', 'opalestate-pro' ), 'after' => esc_html__( 'After - 10$', 'opalestate-pro' ), ], 'default' => 'before', ], [ 'name' => esc_html__( 'Thousands Separator', 'opalestate-pro' ), 'desc' => esc_html__( 'The symbol (typically , or .) to separate thousands', 'opalestate-pro' ), 'id' => 'thousands_separator', 'type' => 'text_small', 'default' => ',', ], [ 'name' => esc_html__( 'Decimal Separator', 'opalestate-pro' ), 'desc' => esc_html__( 'The symbol (usually , or .) to separate decimal points', 'opalestate-pro' ), 'id' => 'decimal_separator', 'type' => 'text_small', 'default' => '.', ], [ 'name' => esc_html__( 'Number of Decimals', 'opalestate-pro' ), 'desc' => esc_html__( 'This sets the number of decimal points shown in displayed prices.', 'opalestate-pro' ), 'id' => 'number_decimals', 'type' => 'text_small', 'attributes' => [ 'type' => 'number', ], 'default' => 2, ], [ 'name' => esc_html__( 'Measurement Unit', 'opalestate-pro' ), 'desc' => esc_html__( 'Select a measurement unit.', 'opalestate-pro' ), 'id' => 'measurement_unit', 'type' => 'select', 'options' => opalestate_get_measurement_units(), 'default' => 'sqft', ], [ 'name' => esc_html__( 'Time Format', 'opalestate-pro' ), 'desc' => esc_html__( 'Select a time format.', 'opalestate-pro' ), 'id' => 'time_format', 'type' => 'select', 'options' => opalestate_get_time_formats(), 'default' => '12_hour', ], [ 'name' => esc_html__( 'Others', 'opalestate-pro' ), 'desc' => '', 'type' => 'opalestate_title', 'id' => 'opalestate_title_others_settings', 'before_row' => '
', 'after_row' => '
', ], [ 'name' => esc_html__( 'Minimum of Target Price For Agent', 'opalestate-pro' ), 'desc' => esc_html__( 'Enter minimum of price for starting search agent by target', 'opalestate-pro' ), 'id' => 'search_agent_min_price', 'type' => 'text_medium', 'attributes' => [ 'type' => 'number', ], 'default' => 0, ], [ 'name' => esc_html__( 'Maximum of Target Price For Agent', 'opalestate-pro' ), 'desc' => esc_html__( 'Enter maximum of price for starting search agent by target', 'opalestate-pro' ), 'id' => 'search_agent_max_price', 'type' => 'text_medium', 'attributes' => [ 'type' => 'number', ], 'default' => 1000000, ], [ 'name' => esc_html__( 'Advanced', 'opalestate-pro' ), 'desc' => '', 'type' => 'opalestate_title', 'id' => 'opalestate_title_advanced_settings', 'before_row' => '
', 'after_row' => '
', ], [ 'name' => esc_html__( 'Clean Up Interval', 'opalestate-pro' ), 'desc' => esc_html__( 'Set a schedule to automatically clean up expired properties and attachments.', 'opalestate-pro' ), 'id' => 'schedule', 'type' => 'select', 'options' => opalestate_get_schedule_interval_options(), 'default' => 0, ], ] ); } }