%PDF- %PDF-
| Direktori : /www/old2/_terainkognita.cz/www.terainkognita.cz/wp-content/themes/bravada/includes/ |
| Current File : /www/old2/_terainkognita.cz/www.terainkognita.cz/wp-content/themes/bravada/includes/styles.php |
<?php
/**
* Styles and scripts registration and enqueuing
*
* @package Bravada
*/
/**
* Loading main styles and scripts
*/
function bravada_enqueue_styles() {
// HTML5 Shiv
wp_enqueue_script( 'bravada-html5shiv', get_template_directory_uri() . '/resources/js/html5shiv.min.js', null, _CRYOUT_THEME_VERSION );
if ( function_exists( 'wp_script_add_data' ) ) wp_script_add_data( 'bravada-html5shiv', 'conditional', 'lt IE 9' );
$cryout_theme_structure = cryout_get_theme_structure();
$options = cryout_get_option();
wp_enqueue_style( 'bravada-themefonts', get_template_directory_uri() . '/resources/fonts/fontfaces.css', null, _CRYOUT_THEME_VERSION ); // fontfaces.css
// Google fonts
$gfonts = array();
$roots = array();
foreach ( $cryout_theme_structure['google-font-enabled-fields'] as $item ) {
$itemg = $item . 'google';
$itemw = $item . 'weight';
// custom font names
if ( ! empty( $options[$itemg] ) && ! preg_match( '/custom\sfont/i', $options[$item] ) ) {
if ( $item == _CRYOUT_THEME_PREFIX . '_fgeneral' ) {
$gfonts[] = cryout_gfontclean( $options[$itemg], ":100,200,300,400,500,600,700,800,900" ); // include all weights for general font
} else {
$gfonts[] = cryout_gfontclean( $options[$itemg], ":".$options[$itemw] );
};
$roots[] = cryout_gfontclean( $options[$itemg] );
}
// preset google fonts
if ( preg_match('/^(.*)\/gfont$/i', $options[$item], $bits ) ) {
if ( $item == _CRYOUT_THEME_PREFIX . '_fgeneral' ) {
$gfonts[] = cryout_gfontclean( $bits[1], ":100,200,300,400,500,600,700,800,900" ); // include all weights for general font
} else {
$gfonts[] = cryout_gfontclean( $bits[1], ":".$options[$itemw] );
};
$roots[] = cryout_gfontclean( $bits[1] );
}
};
// Enqueue google fonts with subsets separately
if ( !empty($gfonts) ) foreach( $gfonts as $i => $gfont ) {
if ( strpos( $gfont, "&" ) !== false ):
wp_enqueue_style( 'bravada-googlefont' . $i, '//fonts.googleapis.com/css?family=' . $gfont, null, _CRYOUT_THEME_VERSION );
unset( $gfonts[$i] );
unset( $roots[$i] );
endif;
};
// Merged google fonts
if ( !empty($gfonts) ){
wp_enqueue_style( 'bravada-googlefonts', '//fonts.googleapis.com/css?family=' . implode( "|" , array_unique( array_merge( $roots, $gfonts ) ) ), null, _CRYOUT_THEME_VERSION );
};
// Main theme style
wp_enqueue_style( 'bravada-main', get_stylesheet_uri(), null, _CRYOUT_THEME_VERSION );
// RTL style
if ( is_RTL() ) wp_enqueue_style( 'bravada-rtl', get_template_directory_uri() . '/resources/styles/rtl.css', null, _CRYOUT_THEME_VERSION );
// Theme generated style
wp_add_inline_style( 'bravada-main', preg_replace( "/[\n\r\t\s]+/", " ", bravada_custom_styles() ) ); // includes/custom-styles.php
} // bravada_enqueue_styles
add_action( 'wp_enqueue_scripts', 'bravada_enqueue_styles' );
/* Outputs the author meta link in header */
function bravada_author_link() {
global $post;
if ( is_single() && get_the_author_meta( 'user_url', $post->post_author ) ) {
echo '<link rel="author" href="' . esc_url( get_the_author_meta( 'user_url', $post->post_author ) ) . '">';
}
} //bravada_author_link()
add_action ( 'wp_head', 'bravada_author_link' );
/**
* Main theme scripts
*/
function bravada_scripts_method() {
// Boxes aspect ratio
list(
$lpboxheight1,
$lpboxwidth1,
$lpboxheight2,
$lpboxwidth2,
) = array_values( cryout_get_option( array(
'theme_lpboxheight1',
'theme_lpboxwidth1',
'theme_lpboxheight2',
'theme_lpboxwidth2',
) ) );
// Failsafes
if ( empty( $lpboxheight1 ) ) $lpboxheight1 = 1;
if ( empty( $lpboxheight2 ) ) $lpboxheight2 = 1;
$js_options = apply_filters( 'bravada_js_options', array(
'masonry' => cryout_get_option('theme_masonry'),
'rtl' => ( is_rtl() ? true : false ),
'magazine' => cryout_get_option('theme_magazinelayout'),
'fitvids' => cryout_get_option('theme_fitvids'),
'autoscroll' => cryout_get_option('theme_autoscroll'),
'articleanimation' => cryout_get_option('theme_articleanimation'),
'lpboxratios' => array( round( $lpboxwidth1/$lpboxheight1, 3 ), round( $lpboxwidth2/$lpboxheight2, 3 ) ),
'is_mobile' => ( wp_is_mobile() ? true : false ),
'menustyle' => cryout_get_option('theme_menustyle'),
) );
wp_enqueue_script( 'bravada-frontend', get_template_directory_uri() . '/resources/js/frontend.js', array( 'jquery' ), _CRYOUT_THEME_VERSION );
wp_localize_script( 'bravada-frontend', 'cryout_theme_settings', $js_options );
if ($js_options['masonry']) wp_enqueue_script( 'jquery-masonry' );
if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' );
} //bravada_scripts_method()
add_action( 'wp_footer', 'bravada_scripts_method' );
/**
* Add defer/sync to scripts
*/
function bravada_scripts_filter($tag) {
$defer = cryout_get_option('theme_defer');
$scripts_to_defer = array( 'frontend.js', 'masonry.min.js' );
foreach( $scripts_to_defer as $defer_script ) {
if( (true == strpos( $tag, $defer_script )) && $defer )
return str_replace( ' src', ' defer src', $tag ); // ' async defer src' causes issues with masonry
}
return $tag;
} //bravada_scripts_filter()
if ( ! is_admin() ) add_filter( 'script_loader_tag', 'bravada_scripts_filter', 10, 2 );
/**
* Add responsive meta
*/
function bravada_responsive_meta() {
echo '<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">' . PHP_EOL;
echo '<meta http-equiv="X-UA-Compatible" content="IE=edge" />';
} //bravada_responsive_meta()
add_action( 'cryout_meta_hook', 'bravada_responsive_meta' );
/*
* bravada_editor_styles() is located in custom-styles.php
*/
function bravada_add_editor_styles() {
$editorstyles = cryout_get_option('theme_editorstyles');
if ( ! $editorstyles ) return;
add_editor_style( 'resources/styles/editor-style.css' );
add_editor_style( add_query_arg( 'action', 'theme_editor_styles_output', admin_url( 'admin-ajax.php' ) ) );
add_action( 'wp_ajax_theme_editor_styles_output', 'bravada_editor_styles_output' );
}//bravada_add_editor_styles
bravada_add_editor_styles();
/* FIN */