?AlkantarClanX12

Your IP : 216.73.216.177


Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/shortcodes/
Upload File :
Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/shortcodes/class-drewcore-shortcode.php

<?php

abstract class DrewCore_Shortcode extends QodeFrameworkShortcode {
	private $layouts       = array();
	private $extra_options = array();

	public function __construct() {
		parent::__construct();
	}

	public function get_layouts() {
		return $this->layouts;
	}

	public function set_layouts( $layouts ) {
		$this->layouts = $layouts;
	}

	public function get_extra_options() {
		return $this->extra_options;
	}

	public function set_extra_options( $extra_options ) {
		$this->extra_options = $extra_options;
	}

	public function map_extra_options() {
		$extra_options = $this->get_extra_options();

		if ( ! empty( $extra_options ) ) {
			foreach ( $extra_options as $option ) {
				$this->set_option( $option );
			}
		}
	}
}