/home/techb158/l2hypotheques.com/wp-content/plugins/calculator-builder/inc
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/calculator-builder/inc/page-settings.php (1362B)
* @copyright Copyright (c) 2022, CalcHub.xyz
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @version 0.4
*/
defined( 'ABSPATH' ) || exit;
$tabs = apply_filters( 'calchub_settings_tab_menu', [] );
$current_tab = ( isset( $_REQUEST["calchub_page"] ) ) ? sanitize_text_field( $_REQUEST["calchub_page"] ) : array_key_first( $tabs );
echo '
';
echo '
';
foreach ( $tabs as $tab => $name ) {
$class = ( $tab === $current_tab ) ? ' nav-tab-active' : '';
echo '' . esc_attr( $name ) . '';
}
echo '
';
$current_tab = array_key_exists( $current_tab, $tabs ) ? 'page-' . $current_tab : array_key_first( $tabs );
$file = apply_filters( 'calchub_settings_menu_file', $current_tab );
if ( file_exists( $file ) ) {
$options = get_option( 'calchub_settings' );
echo '
';
}
echo '
';