[ 'label' => 'Collapsible modules', 'note' => 'This allows users to collapse modules by clicking on their titles. Can be useful if you use many modules.', ], 'themes_output_highlighting' => [ 'label' => 'Search term highlighting', 'note' => 'This enables the use of "highlight=x" in the URL to highlight words used in a search result.', ], // 'themes_edit_css' => [ // 'label' => 'Edit Css', // 'note' => 'Enables you to edit CSS files from within your browser to customise your site style according to your desires.', // ], 'site_disable_fat' => [ 'label' => "Disable fading", 'note' => "If checked, success, warning or error messages display no fading effect anymore.", ], 'site_disable_jstabs' => [ 'label' => "Disable Javascript tabs", 'note' => "If checked, admin pages flow vertically, instead of displaying in a 'tabbed pages' interface.", ], 'site_fancy_zoom' => [ 'label' => "Enable Fancy Zoom for images", 'note' => "If checked, a Javascript zooms images when clicking on them. This will modify the behaviour when viewing most images. If you are running a commercial site, please read the license notice in /themes/js/fancyzoom/js-global/FancyZoom.js.", ], 'site_mods_req_admn_grp' => [ 'label' => 'Modules require membership', 'note' => 'If enabled, modules with group/role restrictions require the administrator to be member of the group/role. If disabled, all modules are always visible to administrators.', ], 'themes_joined_js_css' => [ 'label' => 'Joined CSS and JS', 'note' => 'If enabled, javascript and CSS files will be concatenated into single files to reduce server requests. This is useful for webdesigners and developers. Please enable this feature on live sites.', ], 'themes_packed_js_css' => [ 'label' => 'Packed CSS and JS', 'note' => 'If enabled, javascript and CSS files will be reduced to their smallest possible size. This is useful for webdesigners and developers. Please enable this feature on live sites.', ], 'themes_disable_pkg_css' => [ 'label' => 'Disable All Package CSS', 'note' => 'If checked, all css that is automatically included by packages will be disabled. If you want to include some of the package css it is recommended you copy that css to your theme css file.', ], ]; $gBitSmarty->assign( 'themeSettings', $themeSettings ); if( !empty( $_REQUEST['change_prefs'] )) { $pref_simple_values = [ "site_biticon_display_style", "site_icon_size", "themes_jquery_hosting", "default_icon_style", ]; foreach( $pref_simple_values as $svitem ) { simple_set_value( $svitem, THEMES_PKG_NAME ); } foreach( array_keys( $themeSettings ) as $toggle ) { simple_set_toggle( $toggle, THEMES_PKG_NAME ); } // due to the packing / joining options, we will remove the cache and reload the page $gBitThemes->mThemeCache->expungeCache(); KernelTools::bit_redirect( KERNEL_PKG_URL."admin/index.php?page=themes" ); } // set the options biticon takes $biticon_display_options = [ 'icon' => KernelTools::tra( 'Icon' ), 'text' => KernelTools::tra( 'Text' ), 'icon_text' => KernelTools::tra( 'Icon and Text' ), ]; $gBitSmarty->assign( "biticon_display_options", $biticon_display_options ); // get the icon styles $subDirs = [ 'style_info' ]; $iconStyles = $gBitThemes->getStylesList( UTIL_PKG_PATH."iconsets/", false, $subDirs ); foreach( $iconStyles as $key=>$style ){ $iconStyles[$key] = str_replace( "_", " ", $style['style'] ); } $gBitSmarty->assign( "iconStyles", $iconStyles ); $biticon_sizes = [ 'small' => KernelTools::tra( 'Small (16px)' ), 'medium' => KernelTools::tra( 'Medium (24px)' ), 'large' => KernelTools::tra( 'Large (32px)' ), ]; $gBitSmarty->assign( "biticon_sizes", $biticon_sizes ); // These numbers are intentionally off by 1 due to the way IE fixes name their js $jqueryOptions = [ 'jquery' => KernelTools::tra( 'Google Hosted' ), 'jquerylocal' => KernelTools::tra( 'Local' ), ]; $gBitSmarty->assign( 'jqueryOptions', $jqueryOptions );