%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/buggydubrovnik.com/wp-content/plugins/fusion-core/shortcodes/
Upload File :
Create Path :
Current File : /var/www/html/buggydubrovnik.com/wp-content/plugins/fusion-core/shortcodes/class-highlight.php

<?php
class FusionSC_Highlight {

	public static $args;

	/**
	 * Initiate the shortcode
	 */
	public function __construct() {

		add_filter( 'fusion_attr_highlight-shortcode', array( $this, 'attr' ) );
		add_shortcode( 'highlight', array( $this, 'render' ) );

	}

	/**
	 * Render the shortcode
	 * @param  array $args	 Shortcode paramters
	 * @param  string $content Content between shortcode
	 * @return string		  HTML output
	 */
	function render( $args, $content = '') {
		global $smof_data;

		$defaults = FusionCore_Plugin::set_shortcode_defaults(
			array(
				'class'		=> '',			
				'id'		=> '',
				'color'		=> $smof_data['primary_color'],
				'rounded'	=> 'no',
			), $args 
		);

		extract( $defaults );

		self::$args = $defaults;
		
		$html = sprintf( '<span %s>%s</span>', FusionCore_Plugin::attributes( 'highlight-shortcode' ), do_shortcode($content) );

		return $html;

	}

	function attr() {
	
		$attr = array();

		$attr['class'] = 'fusion-highlight';

		$brightness_level = FusionCore_Plugin::calc_color_brightness( self::$args['color'] );

		if( $brightness_level > 140 ) {
			$attr['class'] .= ' light';
		} else {
			$attr['class'] .= ' dark';
		}

		if( self::$args['class'] ) {
			$attr['class'] .= ' ' . self::$args['class']; 
		}
		
		if( self::$args['rounded'] == 'yes' ) {
			$attr['class'] .= ' rounded'; 
		}		

		if( self::$args['id'] ) {
			$attr['id'] = self::$args['id']; 
		}

		if( self::$args['color'] == 'black') {
			$attr['class'] .= ' highlight2';
		} else {
			$attr['class'] .= ' highlight1';
		}
		
	   $attr['style'] = sprintf( 'background-color:%s;', self::$args['color'] );

		return $attr;

	}

}

new FusionSC_Highlight();

Zerion Mini Shell 1.0