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
25 lines
454 B
PHP
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')
|
|
);
|
|
?>
|