Source for file news_view.php
Documentation is available at news_view.php
$tpl->loadTemplatefile ('news_view.tpl.php');
$res = $db->query ('SELECT
DATE_FORMAT(news.created_at,"%d.%m.%Y - %H:%i") AS date,
news.owner_user_id = liveuser_perm_peoples.perm_user_id
liveuser_perm_peoples.auth_user_id = liveuser_peoples.authUserId
while ($row = $res->fetchRow ()) {
$tpl->setCurrentBlock ('row');
$tpl->setVariable (array ('time' => $row['date'],
'email' => $row['handle'] . '@your-company.com',
'author' => $row['handle']));
$tpl->parseCurrentBlock ();
include_once 'finish.inc.php';
Documentation generated on Mon, 11 Mar 2019 15:40:13 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|