__( 'Import', 'profile-builder' ),
'export' => __( 'Export', 'profile-builder' )
);
echo '
';
foreach( $tabs as $tab => $name ) {
$class = ( $tab == $current ) ? ' nav-tab-active' : '';
echo "". esc_html( $name ) ."";
}
echo '
';
}
/* PB Import and Export subpage content function */
function wppb_pbie_page() {
global $pagenow;
?>
';
esc_html_e( 'Import and Export', 'profile-builder' );
echo '
';
echo '';
if( isset ( $_GET['tab'] ) ) wppb_pbie_tabs( sanitize_text_field( $_GET['tab'] ) );
else wppb_pbie_tabs( 'import' );
?>