Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/options/reset/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/options
<?php
if ( ! function_exists('edgtf_quadric_reset_options_map') ) {
/**
* Reset options panel
*/
function edgtf_quadric_reset_options_map() {
edgtf_quadric_add_admin_page(
array(
'slug' => '_reset_page',
'title' => esc_html__( 'Reset', 'quadric' ),
'icon' => 'fa fa-retweet'
)
);
$panel_reset = edgtf_quadric_add_admin_panel(
array(
'page' => '_reset_page',
'name' => 'panel_reset',
'title' => esc_html__( 'Reset', 'quadric' )
)
);
edgtf_quadric_add_admin_field(array(
'type' => 'yesno',
'name' => 'reset_to_defaults',
'default_value' => 'no',
'label' => esc_html__( 'Reset to Defaults', 'quadric' ),
'description' => esc_html__( 'This option will reset all Edge Options values to defaults', 'quadric' ),
'parent' => $panel_reset
));
}
add_action( 'edgtf_quadric_options_map', 'edgtf_quadric_reset_options_map', 21 );
}