OwlCyberSecurity - MANAGER
Edit File: general_setting.php
<?php $styles = []; foreach(range(1, 28) as $val) { $styles[$val] = sprintf(esc_html__('Style %s', 'conat'), $val); } return array( 'title' => esc_html__( 'General Setting', 'conat' ), 'id' => 'general_setting', 'desc' => '', 'icon' => 'el el-wrench', 'fields' => array( //Preloader array( 'id' => 'theme_preloader', 'type' => 'switch', 'title' => esc_html__('Enable/Disable Preloader', 'conat'), 'default' => false, ), //Sticky Header array( 'id' => 'sticky_header', 'type' => 'switch', 'title' => esc_html__('Enable/Disable Sticky Header', 'conat'), 'default' => true, ), //Box Layout array( 'id' => 'box_layout', 'type' => 'switch', 'title' => esc_html__('Enable/Disable Box Layout', 'conat'), 'default' => false, ), //RTL Layout array( 'id' => 'rtl_layout', 'type' => 'switch', 'title' => esc_html__('Enable/Disable RTL Layout', 'conat'), 'default' => false, ), //Dark Version array( 'id' => 'dark_theme', 'type' => 'switch', 'title' => esc_html__('Enable/Disable Dark Theme', 'conat'), 'default' => false, ), //Back to Top array( 'id' => 'back_to_top', 'type' => 'switch', 'title' => esc_html__('Enable/Disable Back to Top', 'conat'), 'default' => true, ), ), );