Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/genesis-layout-extras/includes/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/genesis-layout-extras/includes/gle-layout-extras.php

<?php

// includes/gle-layout-extras

/**
 * Prevent direct access to this file.
 *
 * @since 1.7.0
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'Sorry, you are not allowed to access this file directly.' );
}


/**
 * Helper function for checking if "Primary Sidebar" or "Secondary Sidebar
 *    (Sidebar Alt)" exist.
 *
 * @since  2.0.0
 *
 * @global mixed $GLOBALS[ 'wp_registered_sidebars' ]
 *
 * @param  string $gle_sidebar
 * @return bool TRUE if 'Sidebar-Alt' exists (registered), otherwise FALSE.
 */
function ddw_gle_core_sidebars_exists( $gle_sidebar ) {
	
	/** Get global object */
	//global $wp_registered_sidebars;

	/** Check for 'Sidebar-Alt' */
	if ( array_key_exists( esc_attr( $gle_sidebar ), $GLOBALS[ 'wp_registered_sidebars' ] ) ) {

		return TRUE;

	} else {

		return FALSE;

	}  // end if

}  // end function


add_action( 'init', 'ddw_gle_register_additional_layouts' );
/**
 * Register additional layout options for Genesis Child Themes.
 *
 * @since  2.0.0
 *
 * @uses   ddw_gle_core_sidebars_exists()
 * @uses   ddw_gle_is_genesis_active()
 * @uses   ddw_gle_is_genesis_prose_extras_active()
 * @uses   genesis_register_layout()
 */
function ddw_gle_register_additional_layouts() {

	/** Register additional layouts if 'Sidebar-Alt' exists (is registered) */
	if ( ddw_gle_core_sidebars_exists( 'sidebar' ) ) {

		/**
		 * a) special:
		 */

		/** Layout: Sidebars below Content (SBC) (like a special "Full-Width-Content" flavor :) */
		if ( ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_sbc', GLE_SETTINGS_FIELD ) )
			&& ! ddw_gle_is_genesis_prose_extras_active()
		) {

			genesis_register_layout( 'sidebars-below-content', array(
				'label' => __( 'Sidebars below Content', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_sidebars_below_content', esc_url( plugins_url( 'assets/images/gle_sbc.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Primary below Content (PBC) */
		if ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_pbc', GLE_SETTINGS_FIELD ) ) {

			genesis_register_layout( 'primary-below-content', array(
				'label' => __( 'Primary below Content', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_primary_below_content', esc_url( plugins_url( 'assets/images/gle_pbc.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Primary above Content (PAC) */
		if ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_pac', GLE_SETTINGS_FIELD ) ) {

			genesis_register_layout( 'primary-above-content', array(
				'label' => __( 'Primary above Content', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_primary_above_content', esc_url( plugins_url( 'assets/images/gle_pac.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Header+Nav/Content/Sidebar (HNCS) */
		if ( ! GLE_NO_HNCS_LAYOUT_OPTION
			&& ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_hncs', GLE_SETTINGS_FIELD ) )
		) {

			genesis_register_layout( 'headernav-content-sidebar', array(
				'label' => __( 'Header+Nav/Content/Sidebar', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_headernav_content_sidebar', esc_url( plugins_url( 'assets/images/gle_hncs.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check


		/**
		 * b) 2-column:
		 */

		/** Layout: Content/Sidebar-Alt (CSA) (like a special "Content-Sidebar" flavor :) */
		if ( ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_c_salt', GLE_SETTINGS_FIELD ) )
			&& ! ddw_gle_is_genesis_prose_extras_active()
		) {

			genesis_register_layout( 'content-sidebaralt', array(
				'label' => __( 'Content/Sidebar-Alt', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_content_sidebaralt', esc_url( plugins_url( 'assets/images/gle_c-salt.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Sidebar-Alt/Content (SAC) (like a special "Sidebar-Content" flavor :) */
		if ( ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_salt_c', GLE_SETTINGS_FIELD ) )
			&& ! ddw_gle_is_genesis_prose_extras_active()
		) {

			genesis_register_layout( 'sidebaralt-content', array(
				'label' => __( 'Sidebar-Alt/Content', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_sidebaralt_content', esc_url( plugins_url( 'assets/images/gle_salt-c.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check


		/**
		 * c) 3-column:
		 */

		/** Layout: Content/Sidebar-Alt/Sidebar (CSAS) (like a special "Content-Sidebar-Sidebar" flavor :) */
		if ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_c_salt_s', GLE_SETTINGS_FIELD ) ) {

			genesis_register_layout( 'content-sidebaralt-sidebar', array(
				'label' => __( 'Content/Sidebar-Alt/Sidebar', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_content_sidebaralt_sidebar', esc_url( plugins_url( 'assets/images/gle_c-salt-s.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Sidebar/Sidebar-Alt/Content (SSAC) (like a special "Sidebar-Sidebar-Content" flavor :) */
		if ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_s_salt_c', GLE_SETTINGS_FIELD ) ) {

			genesis_register_layout( 'sidebar-sidebaralt-content', array(
				'label' => __( 'Sidebar/Sidebar-Alt/Content', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_sidebar_sidebaralt_content', esc_url( plugins_url( 'assets/images/gle_s-salt-c.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

		/** Layout: Sidebar/Content/Sidebar-Alt (SCSA) (like a special "Sidebar-Content-Sidebar" flavor :) */
		if ( ddw_gle_is_genesis_active() && genesis_get_option( 'gle_layout_s_c_salt', GLE_SETTINGS_FIELD ) ) {

			genesis_register_layout( 'sidebar-content-sidebaralt', array(
				'label' => __( 'Sidebar/Content/Sidebar-Alt', 'genesis-layout-extras' ),
				'img'   => apply_filters( 'gle_filter_layout_image_sidebar_content_sidebaralt', esc_url( plugins_url( 'assets/images/gle_s-c-salt.gif', dirname( dirname( __FILE__ ) ) ) ) ),
			) );

		}  // end-if settings check

	}  // end if 'Sidebar Alt' check

}  // end function


/**
 * Helper function for returning layout key 'sidebars-below-content'.
 *
 * @since  2.0.0
 *
 * @return string 'sidebars-below-content'
 */
function __gle_return_sidebars_below_content() {

	return 'sidebars-below-content';

}  // end function


/**
 * Helper function for returning layout key 'content-sidebaralt'.
 *
 * @since  2.0.0
 *
 * @return string 'content-sidebaralt'
 */
function __gle_return_content_sidebaralt() {

	return 'content-sidebaralt';

}  // end function


/**
 * Helper function for returning layout key 'sidebaralt-content'.
 *
 * @since  2.0.0
 *
 * @return string 'sidebaralt-content'
 */
function __gle_return_sidebaralt_content() {

	return 'sidebaralt-content';

}  // end function