*/ public function add_advanced_fields() { if ( ! charitable_is_settings_view( 'advanced' ) ) { return array(); } return array( 'section' => array( 'title' => '', 'type' => 'hidden', 'priority' => 10000, 'value' => 'advanced', ), 'section_dangerous' => array( 'title' => __( 'Dangerous Settings', 'charitable' ), 'type' => 'heading', 'priority' => 100, ), 'delete_data_on_uninstall' => array( 'label_for' => __( 'Reset Data', 'charitable' ), 'type' => 'checkbox', 'help' => __( 'DELETE ALL DATA when uninstalling the plugin.', 'charitable' ), 'priority' => 105, ), ); } } endif;