File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/public_html/wp-content/plugins/sendpress/classes/sc/class-sendpress-sc-base.php
<?php
// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
	header('HTTP/1.0 403 Forbidden');
	die;
}
/**
 * Shortcode Base file
 *
 * 
 * @author 		SendPress
 * @category 	Shortcodes
 * @version     0.9.9.4
 */
class SendPress_SC_Base {

	var $_data = '';
	/**
	*
	*	Overide to not display the docs on the help screen
	*
	*/
	public static function display_docs(){
		return true;
	}

	/**
	*
	*	Overide to set the title
	*
	*/
	public static function title() {
		return false;
	}

	/**
	*
	*	Overide to set the title
	*
	*/
	public static function html() {
		return false;
	}

	/**
	*
	*	Overide to set the docs
	*
	*/
	public static function docs() {
		return false;
	}
	
	/**
	*
	*	Overide to set default options
	*
	*/
	public static function options() {
		return 	array();
	}

	/**
	*
	* Overide to set default output
	*
	* @param array $atts
	*/
	public static function output( $atts ) {
		return "";
	}

	/**
	*
	*	Overide for form post
	*
	*/
	public static function form_post(){
		return false;
	}

}