Whilst you are around, is there a way to make the tabs extensible?
I was trying this
$meta_boxes[] = array(
'id' => 'options',
'title' => __( 'Extensions Options', 'fl-builder' ),
'settings_pages' => 'builder-extensions',
'tabs' => array(
'general' => array(
'label' => __( 'General', 'fl-builder' ),
'icon' => 'dashicons-admin-tools',
),
'popup' => array(
'label' => __( 'OnClick Popup', 'fl-builder' ),
'icon' => 'dashicons-admin-plugins',
),
do_action('extensions_tabs'),
),