Sindbad~EG File Manager

Current Path : /home/xiedrke/entrepot/wp-content/plugins/realpress/app/Shortcodes/
Upload File :
Current File : /home/xiedrke/entrepot/wp-content/plugins/realpress/app/Shortcodes/AbstractShortcode.php

<?php

namespace RealPress\Shortcodes;

/**
 * Class AdvancedSearch
 * @package RealPress\Shortcodes
 * @since 1.0.1
 * @version 1.0.0
 */
abstract class AbstractShortcode {
	protected $shortcode_name;

	/**
	 * Register shortcode.
	 */
	public function __construct() {
		add_shortcode( $this->shortcode_name, array( $this, 'render' ) );
	}

	/**
	 * Render template of shortcode.
	 * If not set any atrribute on short, $attrs is empty string.
	 *
	 * @param string|array $attrs
	 *
	 * @return string
	 */
	abstract public function render( $attrs ): string;
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists