<?php
/**
 * Business Center options
 *
 * @package Theme Palace
 * @subpackage Business_Center
 * @since Business Center 0.1
 */


/**
 * Enable options of the defined section
 * @return array Enable options
 */
function business_center_enable_options() {
	$business_center_enable_options = array(
		'static-frontpage' => __( 'Static Frontpage', 'business-center' ),
		'disabled'         => __( 'Disabled', 'business-center' ),
	);

	$output = apply_filters( 'business_center_enable_options', $business_center_enable_options );

	// Sort array in ascending order, according to the key:
	if ( ! empty( $output ) ) {
		ksort( $output );
	}

	return $output;
}


/**
 * Slider effects
 * @return array Slider effects
 */
function business_center_slider_effect() {
	$business_center_slider_effect = array(
		'scrollHorz' => __( 'Scroll Horizontal', 'business-center' ),
		'fadeout'    => __( 'Fade Out', 'business-center' ),
	);

	$output =  apply_filters( 'business_center_slider_effect', $business_center_slider_effect );

	// Sort array in ascending order, according to the key:
	if ( ! empty( $output ) ) {
		ksort( $output );
	}

	return $output;
}

