Sorry
I'm trying to replace the commented HTML table block with a template, I started out just wanting to get it to work, but now that its working I'd like to clean it up and my first step is implementing templates.
I've added the following template call.
eval('print_output("' . fetch_template('Fulfillment_Company_Display') . '");');
This call is being made from the modcp section of the board, and works well without the template call.
I've also created a blank php:
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'test'); // change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'Fulfillment_Company_Display',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
//$navbits = array();
//$navbits[$parent] = 'Test Page';
//$navbits = construct_navbits($navbits);
//eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('Fulfillment_Company_Display') . '");');
?>
This page works perfectly.
I hope this helps clear up any confusion. And thanks for any help, this has me stumped.