Automatically make Facebook admin panel available if the FacebookBridge

plugin is installed.
This commit is contained in:
Zach Copley 2010-11-18 21:55:43 -08:00
parent cb530566de
commit d927969209
1 changed files with 14 additions and 1 deletions

View File

@ -208,6 +208,19 @@ class FacebookBridgePlugin extends Plugin
return true;
}
/**
* If the plugin's installed, this should be accessible to admins
*/
function onAdminPanelCheck($name, &$isOK)
{
if ($name == 'facebook') {
$isOK = true;
return false;
}
return true;
}
/**
* Add a Facebook tab to the admin panels
*
@ -483,7 +496,7 @@ ENDOFSCRIPT;
{
$client = new Facebookclient($notice);
$client->streamRemove();
return true;
}