diff options
author | Zach Copley <zach@controlyourself.ca> | 2008-12-07 18:59:25 -0500 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2008-12-07 18:59:25 -0500 |
commit | bdb27cfce8337e96ccafc52721e3d41de9b02e0e (patch) | |
tree | b2b9701d5420c159f1818df2071814eac9a2fb30 /actions/facebooksettings.php | |
parent | dccf8374cf7e4673cbc83f695e1665031bdf6539 (diff) |
trac750 - linked in CSS file and added CSS for profile box
- added button for adding a box to the profile on settings
darcs-hash:20081207235925-7b5ce-224fd2482f66c2c9ac9da9ce72c1c0da0243bd83.gz
Diffstat (limited to 'actions/facebooksettings.php')
-rw-r--r-- | actions/facebooksettings.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php index 3855a0c29..4d7000d60 100644 --- a/actions/facebooksettings.php +++ b/actions/facebooksettings.php @@ -35,9 +35,15 @@ class FacebooksettingsAction extends FacebookAction { $fbuid = $facebook->require_login(); + $fbml = '<fb:if-section-not-added section="profile">' + .'<h2>Add an Identi.ca box to your profile!</h2>' + .'<fb:add-section-button section="profile"/>' + .'</fb:if-section-not-added>'; + + $this->show_header('Settings'); - echo '<h2>Coming soon...</h2>'; + echo $fbml; $this->show_footer(); |