Ejemplo n.º 1
0
function display_template($template_name, $assign_vars = array())
{
    // Initialize the template object.
    $tpl = new NWTemplate();
    $tpl->assignArray($assign_vars);
    // display the template
    return $tpl->display($template_name);
}
Ejemplo n.º 2
0
 public function testAssignNull()
 {
     $template = new NWTemplate();
     $result = $template->assignArray(null);
     $this->assertNull($result);
 }