<?php

/**
 * Load scripts for the tutorial
 *
 * @since 1.0
 */

function dslc_tut_load_scripts() {

	$tut_ch_one = dslc_get_option( 'lc_tut_chapter_one', 'dslc_plugin_options_tuts' );
	$tut_ch_two = dslc_get_option( 'lc_tut_chapter_two', 'dslc_plugin_options_tuts' );
	$tut_ch_three = dslc_get_option( 'lc_tut_chapter_three', 'dslc_plugin_options_tuts' );
	$tut_ch_four = dslc_get_option( 'lc_tut_chapter_four', 'dslc_plugin_options_tuts' );

	$tut_ids = array( $tut_ch_one, $tut_ch_two, $tut_ch_three, $tut_ch_four );

	wp_enqueue_style( 'dslc-tut-css', DS_LIVE_COMPOSER_URL . 'includes/tutorials/tutorial.css');

	if ( is_singular() && isset( $_GET['dslc'] ) && $_GET['dslc'] == 'active' && in_array( get_the_ID(), $tut_ids) ) {

		wp_enqueue_script( 'dslc-tut-js', DS_LIVE_COMPOSER_URL . 'includes/tutorials/tutorial.js', array( 'jquery' ) );

	}

} add_action( 'wp_enqueue_scripts', 'dslc_tut_load_scripts' );

/**
 * Display modal for the tutorial
 *
 * @since 1.0
 */

function dslc_tut_modal() {

	$tut_ch_one = dslc_get_option( 'lc_tut_chapter_one', 'dslc_plugin_options_tuts' );
	$tut_ch_two = dslc_get_option( 'lc_tut_chapter_two', 'dslc_plugin_options_tuts' );
	$tut_ch_three = dslc_get_option( 'lc_tut_chapter_three', 'dslc_plugin_options_tuts' );
	$tut_ch_four = dslc_get_option( 'lc_tut_chapter_four', 'dslc_plugin_options_tuts' );

	$tut_ids = array( $tut_ch_one, $tut_ch_two, $tut_ch_three, $tut_ch_four );

	if ( is_singular() && isset( $_GET['dslc'] ) && $_GET['dslc'] == 'active' && in_array( get_the_ID(), $tut_ids) ) {

		$tut_ch_two_link = add_query_arg( array( 'dslc' => 'active' ), get_permalink( $tut_ch_two ) );
		$tut_ch_three_link = add_query_arg( array( 'dslc' => 'active' ), get_permalink( $tut_ch_three ) );
		$tut_ch_four_link = add_query_arg( array( 'dslc' => 'active' ), get_permalink( $tut_ch_four ) );

		?>
			<input type="hidden" name="dslc_tut_settings" id="dslc_tut_settings" data-post-id="<?php echo get_the_ID(); ?>" />
			<input type="hidden" name="dslc_tut_ch_one" id="dslc_tut_ch_one" data-post-id="<?php echo $tut_ch_one; ?>" />
			<input type="hidden" name="dslc_tut_ch_two" id="dslc_tut_ch_two" data-post-id="<?php echo $tut_ch_two; ?>" />
			<input type="hidden" name="dslc_tut_ch_three" id="dslc_tut_ch_three" data-post-id="<?php echo $tut_ch_three; ?>" />
			<input type="hidden" name="dslc_tut_ch_four" id="dslc_tut_ch_four" data-post-id="<?php echo $tut_ch_four; ?>" />
			<input type="hidden" name="dslc_tut_ch_two_link" id="dslc_tut_ch_two_link" data-url="<?php echo $tut_ch_two_link; ?>" />
			<input type="hidden" name="dslc_tut_ch_three_link" id="dslc_tut_ch_three_link" data-url="<?php echo $tut_ch_three_link; ?>" />
			<input type="hidden" name="dslc_tut_ch_four_link" id="dslc_tut_ch_four_link" data-url="<?php echo $tut_ch_four_link; ?>" />
		<?php

	}

} add_action( 'wp_footer', 'dslc_tut_modal' );

/**
 * Options ( choose which pages will be tutorials )
 *
 * @since 1.0.4
 */

function dslc_tut_options() {

	global $dslc_plugin_options;

	$pages = get_pages();
	$pages_opts = array(
		array(
			'label' => __( '- Select -', 'dslc_string' ),
			'value' => 'none'
		)
	);
	foreach( $pages as $page ) {	
		$pages_opts[] = array(
			'label' => $page->post_title,
			'value' => $page->ID
		);
	}	

	$dslc_plugin_options['dslc_plugin_options_tuts'] = array(
		'title' => __( 'Tutorials', 'dslc_string' ),
		'options' => array(
			'lc_tut_chapter_one' => array(
				'label' => __( 'Chapter One', 'dslc_string' ),
				'std' => 'none',
				'type' => 'select',
				'descr' => __( 'Choose the page that will be used for chapter one of the tutorial.', 'dslc_string' ),
				'choices' => $pages_opts
			),
			'lc_tut_chapter_two' => array(
				'label' => __( 'Chapter Two', 'dslc_string' ),
				'std' => 'none',
				'type' => 'select',
				'descr' => __( 'Choose the page that will be used for chapter two of the tutorial.', 'dslc_string' ),
				'choices' => $pages_opts
			),
			'lc_tut_chapter_three' => array(
				'label' => __( 'Chapter Three', 'dslc_string' ),
				'std' => 'none',
				'type' => 'select',
				'descr' => __( 'Choose the page that will be used for chapter three of the tutorial.', 'dslc_string' ),
				'choices' => $pages_opts
			),
			'lc_tut_chapter_four' => array(
				'label' => __( 'Chapter Four', 'dslc_string' ),
				'std' => 'none',
				'type' => 'select',
				'descr' => __( 'Choose the page that will be used for chapter four of the tutorial.', 'dslc_string' ),
				'choices' => $pages_opts
			),
		)
	);

} add_action( 'dslc_hook_register_options', 'dslc_tut_options' );