gecko-dev/webtools/addons/policy.php
mike.morgan%oregonstate.edu 73ca7ae764 added some TODOs
2005-08-08 16:20:22 +00:00

29 lines
615 B
PHP

<?php
/**
* Policy page.
*
* @package amo
* @subpackage docs
*
* @todo talk to cbeard and rebron about establishing the policy document.
*/
$links = array(
array( 'href' => './faq.php',
'title' => 'Frequently Asked Questions',
'text' => 'FAQ'),
array( 'href' => './policy.php',
'title' => 'Addons Policies',
'text' => 'Policy')
);
// Send FAQ data to Smarty object.
$tpl->assign(
array( 'links' => $links,
'sidebar' => 'inc/nav.tpl',
'content' => 'policy.tpl',
'title' => 'Policy')
);
?>