File: /home/c1190199/public_html/_alex/wp-content/themes/portada/class/Theme.Template.class.php
<?php
/******************************************************************************/
/******************************************************************************/
class Portada_ThemeTemplate
{
/**************************************************************************/
function __construct($data,$path)
{
$this->data=$data;
$this->path=$path;
}
/**************************************************************************/
function output($format=false)
{
ob_start();
include($this->path);
$value=ob_get_clean();
if($format) $value=Portada_ThemeHelper::formatCode($value);
return($value);
}
/**************************************************************************/
function outputWP($format=false)
{
ob_start();
include(locate_template($this->path));
$value=ob_get_clean();
if($format) $value=Portada_ThemeHelper::formatCode($value);
return($value);
}
/**************************************************************************/
}
/******************************************************************************/
/******************************************************************************/