plugin_name . '_administrative_options' ); do_settings_sections( $this->plugin_name . '_administrative_options' ); // Load the administrative options and (re)initialise plugin/SaaS state. $options = get_option( $this->plugin_name . '_administrative_options' ); $mlsimport->admin->mlsimport_saas_setting_up(); //mlsimport_saas_event_mls_import_auto_function(); //mlsimport_saas_reconciliation_event_function(); ?>

below. $disable_logs = intval( get_option( 'mlsimport_disable_logs' ) ); $selected_no = $selected_yes = ''; // 0 = logs disabled (default) -> select the "disabled" option; otherwise "enabled". if ( 0 === intval($disable_logs) ) { $selected_no = ' selected '; } else { $selected_yes = ' selected '; } // Current "disable history" value (defaults to 1); pre-select the matching option. $disable_history = intval( get_option( 'mlsimport-disable-history', 1 ) ); $selected_history_no = $selected_history_yes = ''; // 0 = history disabled -> select the "disabled" option; otherwise "enabled". if ( 0 === intval($disable_history) ) { $selected_history_no = ' selected '; } else { $selected_history_yes = ' selected '; } ?>





.