Sindbad~EG File Manager
<?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