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
<?php
// SendPress Required Class: SendPress_Template
// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
header('HTTP/1.0 403 Forbidden');
die;
}
/**
* SendPress_Render_Engine
*
* @uses
*
*
* @package SendPress
* @author Josh Lyford
* @license See SENPRESS
* @since 0.9.9.9.3
*/
class SendPress_Email_Render_Engine {
static function render_example_by_id( $post_id ){
return self::render_example( get_post( $post_id ) );
}
static function render_customizer_base(){
$path = SENDPRESS_PATH . 'templates/v1-0/master.html';
$html = file_get_contents($path);
$return = spnl_do_content_tags( $html, 0,0, 0, true );
$return = spnl_do_email_tags( $return, 0,0, 0, true );
$return = spnl_do_subscriber_tags( $return, 0,0, 0, true );
return $return;
}
static function render_template_example( $post ){
$html = self::render_html_base_by_post( $post );
$return = spnl_do_content_tags( $html, $post->ID, $post->ID, 0, true );
$return = spnl_do_email_tags( $return, $post->ID, $post->ID, 0, true );
$return = spnl_do_subscriber_tags( $return, $post->ID, $post->ID, 0, true );
//$body_html = preg_replace( $pattern , site_url() ."?sendpress=link&fxti=".$subscriber_key."&spreport=". $this->id ."&spurl=$0", $body_html );
if(class_exists("DomDocument")){
$dom = new DomDocument();
$dom->strictErrorChecking = false;
@$dom->loadHtml($return);
$pTags = $dom->getElementsByTagName('p');
$body_font = "";
$body_size = "";
if(defined('SENDPRESS_PRO_LOADED') && SENDPRESS_PRO_LOADED){
$font_value = get_post_meta( $post->ID , '_body_font', true );
$size_value = get_post_meta( $post->ID , '_body_font_size', true );
if(strlen($font_value) > 0){
$body_font = 'font-family:'. urldecode($font_value) .';';
}
SendPress_Error::log("size: ".strlen($size_value));
if($size_value > 0){
$body_size = 'font-size:'.$size_value .'px;';
}
}
foreach ($pTags as $pElement) {
$px = $pElement->getAttribute('style');
$pElement->setAttribute('style', ' margin-top:0; margin-bottom:10px; '. $body_font . $body_size . $px );
}
$return = $dom->saveHtml();
}
return $return;
}
static function render_template( $template_id, $email_id, $raw_content ){
$html = self::render_html_base_by_id($template_id);
return spnl_do_content_tags( $html , $template_id, $email_id, 0, false, $raw_content );
}
static function render_system_template( $template_id, $email_id ){
$html = self::render_html_base_by_id($template_id);
return spnl_do_content_tags( $html , $template_id, $email_id, 0, false );
}
static function render_html_base_by_id( $id ){
$temp_post = get_post( $id );
if($temp_post !== null){
if($temp_post->post_status == 'sp-custom'){
return $temp_post->post_content;
}
$temp = json_decode( $temp_post->post_content );
/*
if( $temp === false || $temp === null){
$path = SENDPRESS_PATH.'templates/v1-0/master.html';
} else {
$path = $temp->path;
}
*/
$path = SENDPRESS_PATH . 'templates/v1-0/master.html';
$html = file_get_contents($path);
return $html;
}
$path = SENDPRESS_PATH.'templates/v1-0/master.html';
$html = file_get_contents($path);
return $html;
}
static function render_html_base_by_post( $post ){
$temp = json_decode( $post->post_content );
/*
if( is_object($temp) ){
$path = $temp->path;
} else {
$path = SENDPRESS_PATH.'templates/v1-0/master.html';
}
*/
$path = SENDPRESS_PATH.'templates/v1-0/master.html';
$html = file_get_contents($path);
return $html;
}
function render_old_template( $post_id ){
return '';
}
}
