diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-02-04 22:33:50 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-02-04 22:54:07 +0000 |
commit | 68152dcf3acca51b85fc80e5549718c8123f943c (patch) | |
tree | f1ecda2aea744e92091fb2943131985860da4590 /lib | |
parent | a97f8f6a43b27b3392ef9b03be58e37d743f394d (diff) |
Facebook app - reorganized some stuff; better HTML output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/facebookaction.php | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/lib/facebookaction.php b/lib/facebookaction.php index f42427540..b6481011f 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -129,7 +129,7 @@ class FacebookAction extends Action * Start an Facebook ready HTML document * * For Facebook we don't want to actually output any headers, - * DTD info, etc. + * DTD info, etc. Just Stylesheet and JavaScript links. * * If $type isn't specified, will attempt to do content negotiation. * @@ -140,6 +140,9 @@ class FacebookAction extends Action function startHTML($type=null) { + $this->showStylesheets(); + $this->showScripts(); + $this->elementStart('div', array('class' => 'facebook-page')); } @@ -181,8 +184,6 @@ class FacebookAction extends Action function showHead($error, $success) { - $this->showStylesheets(); - $this->showScripts(); if ($error) { $this->element("h1", null, $error); @@ -204,7 +205,6 @@ class FacebookAction extends Action // Make this into a widget later function showLocalNav() { - $this->elementStart('ul', array('class' => 'nav')); $this->elementStart('li', array('class' => @@ -229,18 +229,7 @@ class FacebookAction extends Action $this->elementEnd('li'); $this->elementEnd('ul'); - } - - /** - * Show primary navigation. - * - * @return nothing - */ - function showPrimaryNav() - { - // we don't want to show anything for this - } /** * Show header of the page. @@ -254,7 +243,6 @@ class FacebookAction extends Action $this->elementStart('div', array('id' => 'header')); $this->showLogo(); $this->showNoticeForm(); - $this->showPrimaryNav(); $this->elementEnd('div'); } |