2019-09-10 06:27:33 +02:00
< ? php
/**
* $Desc $
*
* @ version $Id $
* @ package opalestate
* @ author Opal Team < info @ wpopal . com >
* @ 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 = '' ) {
$pages = opalestate_cmb2_get_post_options ( [
'post_type' => 'page' ,
'numberposts' => - 1 ,
] );
return apply_filters ( 'opalestate_settings_general' , [
[
'name' => esc_html__ ( 'General Settings' , 'opalestate-pro' ),
'type' => 'opalestate_title' ,
'id' => 'opalestate_title_general_settings_1' ,
'before_row' => '<hr>' ,
'after_row' => '<hr>' ,
],
[
'name' => esc_html__ ( 'User Management Page' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'This is page use User Management Page using for show content of management page such as profile, my properties' , 'opalestate-pro' ),
'id' => 'user_management_page' ,
'type' => 'select' ,
'options' => $pages ,
],
[
'name' => esc_html__ ( 'My Account Page' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'This is page use User login and register an account, or reset password.' , 'opalestate-pro' ),
'id' => 'user_myaccount_page' ,
'type' => 'select' ,
'options' => $pages ,
],
[
'name' => esc_html__ ( 'Enable Message Database' , 'opalestate-pro' ),
2019-09-20 09:37:55 +02:00
'desc' => esc_html__ ( 'Allow User send message Contact/Equire via email and saved into database to exchange theirs message direct in User Message Management' ,
'opalestate-pro' ),
2019-09-10 06:27:33 +02:00
'id' => 'message_log' ,
'type' => 'switch' ,
'options' => [
'on' => esc_html__ ( 'Enable' , 'opalestate-pro' ),
'off' => esc_html__ ( 'Disable' , 'opalestate-pro' ),
],
],
2019-09-20 09:37:55 +02:00
2019-09-10 06:27:33 +02:00
[
'name' => esc_html__ ( 'Maximun Upload Image Size' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'Set maximun volumn size having < x MB' , 'opalestate-pro' ),
'id' => 'upload_image_max_size' ,
'type' => 'text' ,
'default' => '0.5' ,
],
[
'name' => esc_html__ ( 'Maximun Upload Image Files' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'Set maximun volumn size having < x MB' , 'opalestate-pro' ),
'id' => 'upload_image_max_files' ,
'type' => 'text' ,
'default' => '10' ,
],
[
'name' => esc_html__ ( 'Maximun Upload Other Size' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'Set maximun volumn size having < x MB for upload docx, pdf...' , 'opalestate-pro' ),
'id' => 'upload_other_max_size' ,
'type' => 'text' ,
2019-09-20 09:37:55 +02:00
'default' => '0.8' ,
2019-09-10 06:27:33 +02:00
],
[
'name' => esc_html__ ( 'Maximun Upload Other Files' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'Set maximun volumn size having < x MB for upload docx, pdf...' , 'opalestate-pro' ),
2019-09-20 09:37:55 +02:00
'id' => 'upload_other_max_files' ,
'type' => 'text' ,
'default' => '10' ,
'after_row' => '<hr>' ,
2019-09-10 06:27:33 +02:00
],
[
'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 (),
2019-09-20 09:37:55 +02:00
'after_row' => '<em>' . __ ( 'To generate images with new image sizes, you can use this <a href="https://goo.gl/FuXFex" target="_blank">Force Regenerate Thumbnails</a>' ,
2019-09-10 06:27:33 +02:00
'opalestate-pro' ) . '</em>' ,
],
[
'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__ ( 'Single Layout Page' , 'opalestate-pro' ),
'desc' => esc_html__ ( 'Choose layout for single property.' , 'opalestate-pro' ),
'id' => 'layout' ,
'type' => 'select' ,
'options' => apply_filters ( 'opalestate_single_layout_templates' , [ '' => esc_html__ ( 'Inherit' , 'opalestate-pro' ) ] ),
],
[
'name' => esc_html__ ( 'Currency Settings' , 'opalestate-pro' ),
'desc' => '' ,
'type' => 'opalestate_title' ,
'id' => 'opalestate_title_general_settings_2' ,
'before_row' => '<hr>' ,
'after_row' => '<hr>' ,
],
[
'name' => esc_html__ ( 'Currency' , 'opalestate-pro' ),
'desc' => 'Choose your currency. Note that some payment gateways have currency restrictions.' ,
'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' ),
2019-09-20 09:37:55 +02:00
'desc' => esc_html__ ( 'Select a measurement unit.' , 'opalestate-pro' ),
2019-09-10 06:27:33 +02:00
'id' => 'measurement_unit' ,
'type' => 'select' ,
2019-09-20 09:37:55 +02:00
'options' => opalestate_get_measurement_units (),
'default' => 'sqft' ,
2019-09-10 06:27:33 +02:00
],
[
'name' => esc_html__ ( 'Google Map API' , 'opalestate-pro' ),
'desc' => __ ( 'You need to register <a href="https://developers.google.com/maps/documentation/javascript/get-api-key" target="_blank">Google API Key</a>, then put the key in this setting.' ,
'opalestate-pro' ),
'id' => 'google_map_api_keys' ,
'type' => 'text' ,
'default' => 'AIzaSyCfMVNIa7khIqYHCw6VBn8ShUWWm4tjbG8' ,
],
]
);
}
}