Source for file authors.php
Documentation is available at authors.php
//we want to display this author list
'Christian Weiske' => 'cweiske@php.net',
'Björn Schotte' => 'schotte@mayflower.de'
require_once 'HTML/Template/PHPLIB.php';
$t->setFile ('authors', 'authors.tpl');
$t->setBlock ('authors', 'authorline', 'authorline_ref');
$t->setVar ('NUM_AUTHORS', count($authors));
$t->setVar ('PAGE_TITLE', 'Code authors as of ' . date('Y-m-d'));
foreach ($authors as $name => $email) {
$t->setVar ('AUTHOR_NAME', $name);
$t->setVar ('AUTHOR_EMAIL', $email);
$t->parse ('authorline_ref', 'authorline', true );
echo $t->finish ($t->parse ('OUT', 'authors'));
Documentation generated on Mon, 11 Mar 2019 15:10:06 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|