shaver%mozilla.org 9f9bd13836 Basic dictionaries page, need to pretty it up still.
Include install.js in the header, because we need it pretty much everywhere.


git-svn-id: svn://10.0.0.236/trunk@213971 18797224-902f-48f8-a5cc-f745e15eee43
2006-10-22 08:42:45 +00:00

25 lines
454 B
PHP

<?php
/**
* Dictionaries page.
*
* @package amo
* @subpackage docs
*/
startProcessing('dictionaries.tpl', 'dictionaries', $compileId, 'rustico');
require_once('includes.php');
setApp();
$amo = new AMO_Object();
$dicts = $amo->getDictionaries();
// Assign template variables.
$tpl->assign(
array( 'dicts' => $dicts,
'content' => 'dictionaries.tpl',
'currentTab' => 'dictionaries')
);
?>