File: //home/globfdxw/diasporameetsafrica.com/wp-content/themes/DA10/framework/docs/s_contact.php
<?php
global $CORE, $CORE_UI, $userdata;
ob_start();
_ppt_template( 'single/single-content-data-contact' );
$author = ob_get_contents();
ob_end_clean();
ob_start();
_ppt_template( 'single/single-contact' );
$author1 = ob_get_contents();
ob_end_clean();
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
ob_start();
echo $author;
$output = ob_get_contents();
$output = preg_replace('~>\s+<~', '><',$output);
ob_end_clean();
$menu[] = array(
"name" => "Contact Form Unstyled",
"desc" => "",
"data" => $output,
);
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
ob_start();
echo $author1;
$output = ob_get_contents();
$output = preg_replace('~>\s+<~', '><',$output);
ob_end_clean();
$menu[] = array(
"name" => "Contact Form Styled",
"desc" => "",
"data" => $output,
);
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
_docsSection($menu);
?>