';
}
// PWA Section
Redux::setSection( $opt_name, array(
'title' => esc_html__( 'PWA', 'accelerated-mobile-pages' ),
'id' => 'pwa-for-wp',
'desc' => '',
'subsection' => true,
'fields' => array(
array(
'id' => 'ampforwp-pwa-for-wp',
'type' => 'section',
'title' => esc_html__('Progressive Web App (PWA)', 'accelerated-mobile-pages'),
'indent' => true,
'layout_type' => 'accordion',
'accordion-open'=> 1,
),
array(
'id' => 'ampforwp_pwa_module',
'type' => 'raw',
'title' => esc_html__('PWA Support', 'accelerated-mobile-pages'),
'content' => (!is_plugin_active('pwa-for-wp/pwa-for-wp.php')?
'Activate this Module
'
: '
').'Learn more'
),
)
)
);
// Performance SECTION
Redux::setSection( $opt_name, array(
'title' => __( 'Performance', 'accelerated-mobile-pages' ),
'id' => 'amp-performance',
'desc' => $cache_desc,
'subsection' => true,
'fields' => array(
array(
'id' => 'ampforwp-performance',
'type' => 'section',
'title' => __('Performance Enhancement', 'accelerated-mobile-pages'),
'indent' => true,
'layout_type' => 'accordion',
'accordion-open'=> 1,
),
array(
'id' => 'ampforwp_cache_minimize_mode',
'type' => 'switch',
'title' => __('Minify', 'accelerated-mobile-pages'),
'tooltip-subtitle' => __('Improve the Page Speed and Loading time with Minification option', 'accelerated-mobile-pages'),
'default' => 0
),
)
)
);
}