Offices Listing

From PikaDocs

Simply whipped up a simple HTML page with contact info for the whole program. This is about as simple a mod as you can do to a Pika system, displaying a static html page wrapped in a normal Pika page.

<?php

require_once ('pika_cms.php');

$pk = new pikaCms;

unset($C);

/* we need 2 rows of content, and the template only handles one,
 * so we'll use a "wrapper" table
 */
$m = "";
$a['plUserId'] = $plUserId;

$plTemplate["content"] = pl_template($a, 'helpdocs/offices.html', 'yes');
$plTemplate["page_title"] = 'Office List';

$plTemplate['nav'] = "<a href=site_map.php class=light>$pikaNavRootLabel</a> > Offices";

echo pl_template($plTemplate, 'templates/default.html');
echo pl_bench('results');
exit();

?>