set_params( array( 'class_outerdiv' => 'action_messages container-fluid', 'class_success' => 'alert alert-dismissible alert-success fade in', 'class_warning' => 'alert alert-dismissible alert-warning fade in', 'class_error' => 'alert alert-dismissible alert-danger fade in', 'class_note' => 'alert alert-dismissible alert-info fade in', 'before_message' => '', ) ); // --------------------- PAGE LEVEL CACHING SUPPORT --------------------- // Note: This is totally optional. General caching must be enabled in Global settings, otherwise this will do nothing. // Delete this block if you don't care about page level caching. Don't forget to delete the matching section at the end of the page. load_class( '_core/model/_pagecache.class.php', 'PageCache' ); $PageCache = new PageCache( NULL ); // Check for cached content & Start caching if needed: if( ! $PageCache->check() ) { // Cache miss, we have to generate: // --------------------- PAGE LEVEL CACHING SUPPORT --------------------- require_js_defer( '#jquery#' ); require_js_defer( '#bootstrap#' ); require_css( '#bootstrap_css#' ); require_css( 'bootstrap-b2evo_base.bmin.css' ); require_css( 'b2evo_helper_screens.min.css' ); // Initialize font-awesome icons and use them as a priority over the glyphicons, @see get_icon() init_fontawesome_icons( 'fontawesome-glyphicons' ); add_js_for_toolbar(); // Registers all the javascripts needed by the toolbar menu // Send the predefined cookies: evo_sendcookies(); headers_content_mightcache( 'text/html' ); // In most situations, you do NOT want to cache dynamic content! ?>