<?php   
/**
 * SKT Lawzo functions and definitions
 *
 * @package SKT Lawzo  
 */

/**
 * Filter the except length to 30 characters.
 *
 * @param int $length Excerpt length.
 * @return int (Maybe) modified excerpt length.
 */
function skt_lawzo_excerpt_length( $length ) {
    return 60;
}
add_filter( 'excerpt_length', 'skt_lawzo_excerpt_length', 999 );

/**
 * Set the content width based on the theme's design and stylesheet.
 */

if ( ! function_exists( 'skt_lawzo_setup' ) ) : 
/**
 * Sets up theme defaults and registers support for various WordPress features.
 *
 * Note that this function is hooked into the after_setup_theme hook, which runs
 * before the init hook. The init hook is too late for some features, such as indicating
 * support post thumbnails.
 */
function skt_lawzo_setup() {
	load_theme_textdomain( 'skt-lawzo', get_template_directory() . '/languages' );
	add_theme_support( 'automatic-feed-links' );
	add_theme_support('woocommerce');
	add_theme_support( 'post-thumbnails' ); 
	add_theme_support( 'custom-header' );
	add_theme_support( 'title-tag' );
	
	global $content_width;  
	if ( ! isset( $content_width ) )
		$content_width = 640; /* pixels */ 	
	
	add_theme_support( 'custom-logo', array(
		'height'      => 100,
		'width'       => 350,
		'flex-height' => true,
	) );
	add_theme_support( 'custom-header', array( 'header-text' => false ) );	
	
	add_image_size('skt-lawzo-homepage-thumb',240,145,true);
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'skt-lawzo' ),
		'topmenu' => __( 'Top Menu', 'skt-lawzo' ),
		'footer' => __( 'Footer Menu', 'skt-lawzo' ),
	) );
	add_theme_support( 'custom-background', array(
		'default-color' => 'ffffff'
	) );
	add_editor_style( 'editor-style.css' );
} 
endif; // skt_lawzo_setup
add_action( 'after_setup_theme', 'skt_lawzo_setup' );


function skt_lawzo_widgets_init() { 	
	register_sidebar( array(
		'name'          => __( 'Blog Sidebar', 'skt-lawzo' ),
		'description'   => __( 'Appears on blog page sidebar', 'skt-lawzo' ),
		'id'            => 'sidebar-1',
		'before_widget' => '',		
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3><aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
	) );
	
	register_sidebar( array(
		'name'          => __( 'Header Info', 'skt-lawzo' ),
		'description'   => __( 'Appears on header of site', 'skt-lawzo' ),
		'id'            => 'header-info',
		'before_widget' => '<div class="headerinfo">',	
		'after_widget'  => '</div>',	
		'before_title'  => '<h3 style="display:none">',
		'after_title'   => '</h3>',		
	) );		
	
}
add_action( 'widgets_init', 'skt_lawzo_widgets_init' );


function skt_lawzo_font_url(){
		$font_url = '';		
		
		/* Translators: If there are any character that are not
		* supported by Roboto, trsnalate this to off, do not
		* translate into your own language.
		*/
		$roboto = _x('on','roboto:on or off','skt-lawzo');		
		
		
		/* Translators: If there has any character that are not supported 
		*  by Scada, translate this to off, do not translate
		*  into your own language.
		*/
		$scada = _x('on','Scada:on or off','skt-lawzo');	
		
		if('off' !== $roboto ){
			$font_family = array();
			
			if('off' !== $roboto){
				$font_family[] = 'Roboto:300,400,600,700,800,900';
			}
					
						
			$query_args = array(
				'family'	=> urlencode(implode('|',$font_family)),
			);
			
			$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
		}
		
	return $font_url;
	}


function skt_lawzo_scripts() {
	wp_enqueue_style('skt-lawzo-font', skt_lawzo_font_url(), array());
	wp_enqueue_style( 'skt-lawzo-basic-style', get_stylesheet_uri() );
	wp_enqueue_style( 'nivoslider-style', get_template_directory_uri().'/css/nivo-slider.css' );
	wp_enqueue_style( 'skt-lawzo-main-style', get_template_directory_uri().'/css/responsive.css' );		
	wp_enqueue_style( 'skt-lawzo-base-style', get_template_directory_uri().'/css/style_base.css' );
	wp_enqueue_script( 'nivo-script', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
	wp_enqueue_script( 'skt-lawzo-custom_js', get_template_directory_uri() . '/js/custom.js' );

	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'skt_lawzo_scripts' );

define('SKT_URL','http://www.sktthemes.net', 'skt-lawzo');
define('SKT_THEME_URL','http://www.sktthemes.net/themes', 'skt-lawzo');
define('SKT_THEME_DOC','http://sktthemesdemo.net/documentation/lawzo-documentation/', 'skt-lawzo');
define('SKT_FREE_THEME_URL','https://www.sktthemes.net/shop/free-lawyer-wordpress-theme/','skt-lawzo');
define('SKT_PRO_THEME_URL','http://www.sktthemes.net/shop/lawzo-lawyer-wordpress-theme/', 'skt-lawzo');
define('SKT_LIVE_DEMO','http://sktthemesdemo.net/lawyer/', 'skt-lawzo');

/**
 * Implement the Custom Header feature.
 */
require get_template_directory() . '/inc/custom-header.php';

require_once get_template_directory() . '/customize-pro/example-1/class-customize.php';

/**
 * Custom template for about theme.
 */
require get_template_directory() . '/inc/about-themes.php';

/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/inc/template-tags.php';

/**
 * Custom functions that act independently of the theme templates.
 */
require get_template_directory() . '/inc/extras.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/customizer.php';

if ( ! function_exists( 'skt_lawzo_the_custom_logo' ) ) :
/**
 * Displays the optional custom logo.
 *
 * Does nothing if the custom logo is not available.
 *
 */
function skt_lawzo_the_custom_logo() {
	if ( function_exists( 'the_custom_logo' ) ) {
		the_custom_logo();
	}
}
endif;


// get slug by id
function skt_lawzo_get_slug_by_id($id) {
	$post_data = get_post($id, ARRAY_A);
	$slug = $post_data['post_name'];
	return $slug; 
}

function skt_lawzo_customizer_styles() {
    wp_enqueue_style( 'skt-lawzo-customizer', trailingslashit( get_template_directory_uri() ).'css/customizer.css', null );
}
add_action( 'customize_controls_print_styles', 'skt_lawzo_customizer_styles', 99 );