added title, filled out passing of proper vars.
faq.php
fixed title.
overview.php
fixed title.
content.css
added some styles for user opinions.
developers/index.php
fixed title.
lib/addon.class.php
added class vars and some extra stuff in constructor in order to populate all addon information during object instantiation.
lib/amo.class.php
added setVar and setVars functions, which set object parameters one at a time or via array, respectively.
tpl/addon.tpl
fleshed out addon summary page to look mostly like existing pages.
tpl/inc/header.tpl
added line for page title.
git-svn-id: svn://10.0.0.236/trunk@176369 18797224-902f-48f8-a5cc-f745e15eee43
17 lines
293 B
PHP
17 lines
293 B
PHP
<?php
|
|
/**
|
|
* Developers index.
|
|
* @package amo
|
|
* @subpackage docs
|
|
*/
|
|
// Assign content template.
|
|
$tpl->assign(
|
|
array(
|
|
'content' =>'developers/index.tpl',
|
|
'title' =>'Developer Login')
|
|
);
|
|
|
|
// Set custom wrapper for this page.
|
|
$wrapper = 'inc/wrappers/nonav.tpl';
|
|
?>
|