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/www/wp-content/plugins/sendpress/classes/class-sendpress-shortcode-loader.php
<?php
/**
 * SendPress Shortcode Loader class.
 *
 * @class 		SendPress_Shortcode_Loader
 * @version		0.9.9.4
 * @package		SendPress/Classes
 * @category	Class
 * @author 		SendPRess
 */
class SendPress_Shortcode_Loader {

	public static function shortcodes(){
		return array(
			'unsubscribe-form' => __CLASS__ . '::unsubscribe_form',
			'recent-posts' => __CLASS__ . '::recent_posts',
			'signup' => __CLASS__ . '::signup',
			'form' => __CLASS__ . '::forms',
			'recent-posts-by-user' => __CLASS__ . '::recent_posts'
		);
	}

	/**
	 * Init shortcodes
	 */
	public static function init() {
		// Define shortcodes
		$shortcodes = self::shortcodes();

		foreach ( $shortcodes as $shortcode => $function ) {
			add_shortcode( apply_filters( "sp_{$shortcode}_shortcode_tag", 'sp-'. $shortcode ), $function );
		}

		//backwards compatibility
		add_shortcode('sendpress-signup', __CLASS__ . '::signup_nowrap');

	}


	public static function docs(){
		?><div class="panel-group" id="accordion"><?php
		$shortcodes = self::shortcodes();
		ksort($shortcodes);
		foreach ( $shortcodes as $shortcode => $function ) {
			$classname = ucwords(str_replace('-', ' ', strtolower($shortcode) ));
			$classname = str_replace(' ', '_', $classname );
			$classname = "SendPress_SC_" . $classname;
			if(call_user_func(array($classname, 'display_docs'))){
				?>
				<div class="panel panel-default">
				    <div class="panel-heading">
				      <h4 class="panel-title">
				        <!--<a data-toggle="collapse" data-parent="#accordion" href="#<?php echo $classname; ?>">-->
				        	<?php
				        		$sc_title = "[sp-". $shortcode ."]";
				        		$title = call_user_func(array($classname, 'title'));
				        		if( $title != false ){
				        			$sc_title = $title;
				        		}
				         	 	echo $sc_title;
				         	  ?>
				        <!--</a>-->
				      </h4>
				    </div>
					<div id="<?php echo $classname ?>">
						<div class="panel-body">
						<?php
							$docs = call_user_func(array($classname, 'docs'));
							if($docs !== false){
								echo "<p>" . $docs . "</p>";
							}
							echo "<strong class='text-muted'>".__('Basic','sendpress').":</strong><br>";
							echo "<pre>[sp-". $shortcode ."]</pre>";
							$options =  call_user_func(array($classname, 'options'));

							if(!empty($options)){
							$txt = '';
							foreach ($options as $key => $value) {
								if($value === false){
									$value = 'false';
								}
								$txt .= $key . "='".$value."' ";
							}
							echo "<strong class='text-muted'>".__('All Options with Defaults','sendpress').":</strong><br>";
							echo "<pre>[sp-". $shortcode ." ". $txt ."]</pre>";
							}
							$html = call_user_func(array($classname, 'html'));
							if( $html !== false ){
								$message = __('Your Content Here.','sendpress');
								if(is_string( $html ) ){	
									$message = $html;
								}
								echo "<strong class='text-muted'>".__('Wrapping Content','sendpress').":</strong><br>";
								echo "<pre>[sp-". $shortcode ."]". $message ."[/sp-". $shortcode ."]</pre>";
							}

							do_action('sendpress_shortcode_examples_'.$shortcode);
						?>

						</div>
					</div>
				</div>
				<?php
			}
		}
		?></div><?php
	}

	/**
	 * Shortcode Wrapper
	 *
	 * @param mixed $function
	 * @param array $atts (default: array())
	 * @return string
	 */
	public static function shortcode_wrapper(
		$function,
		$atts    = array(),
		$content = null,
		$wrapper = array(
			'class'  => 'sendpress',
			'before' => null,
			'after'  => null
		)
	) {
		ob_start();

		$before 	= empty( $wrapper['before'] ) ? '<div class="' . esc_attr( $wrapper['class'] ) . '">' : $wrapper['before'];
		$after 		= empty( $wrapper['after'] ) ? '</div>' : $wrapper['after'];

		echo $before;
		call_user_func( $function, $atts, $content );
		echo $after;

		return ob_get_clean();
	}


	public static function shortcode_wrapper_nobuffer(
		$function,
		$atts    = array(),
		$wrapper = array(
			'class'  => 'sendpress',
			'before' => null,
			'after'  => null
		)
	) {
		

		$before 	= empty( $wrapper['before'] ) ? '<div class="' . esc_attr( $wrapper['class'] ) . '">' : $wrapper['before'];
		$after 		= empty( $wrapper['after'] ) ? '</div>' : $wrapper['after'];

		$x = $before;
		$x .= call_user_func( $function, $atts );
		$x .= $after;

		return $x;
	}


	/**
	 * Unsubscribe shortcode.
	 *
	 * @access public
	 * @param mixed $atts
	 * @return string
	 */
	public static function unsubscribe_form( $atts, $content) {
		return self::shortcode_wrapper( array( 'SendPress_SC_Unsubscribe_Form', 'output' ), $atts, $content );
	}
	/**
	 * Recent Posts shortcode.
	 *
	 * @access public
	 * @param mixed $atts
	 * @return string
	 */
	public static function recent_posts( $atts ) {
		return self::shortcode_wrapper_nobuffer( array( 'SendPress_SC_Recent_Posts', 'output' ), $atts );
	}
	/**
	 * Signup shortcode.
	 *
	 * @access public
	 * @param mixed $atts
	 * @return string
	 */
	public static function signup( $atts ) {
		return self::shortcode_wrapper( array( 'SendPress_SC_Signup', 'output' ), $atts );
	}
	/**
	 * Forms shortcode.
	 *
	 * @access public
	 * @param mixed $atts
	 * @return string
	 */
	public static function forms( $atts ) {
		return self::shortcode_wrapper( array( 'SendPress_SC_Forms', 'output' ), $atts );
	}
	/**
	 * Signup shortcode old with no wrapper code.
	 *
	 * @access public
	 * @param mixed $atts
	 * @return string
	 */
	public static function signup_nowarp( $atts ) {
		return call_user_func( array( 'SendPress_SC_Signup', 'output' ), $atts );
	}

	public static function recent_posts_by_user($atts){
		return call_user_func( array( 'SendPress_SC_Recent_Posts_By_User', 'output' ), $atts );
	}




}