Automatically make Facebook admin panel available if the FacebookBridge
plugin is installed.
This commit is contained in:
parent
cb530566de
commit
d927969209
@ -208,6 +208,19 @@ class FacebookBridgePlugin extends Plugin
|
|||||||
return true;
|
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
|
* Add a Facebook tab to the admin panels
|
||||||
*
|
*
|
||||||
@ -483,7 +496,7 @@ ENDOFSCRIPT;
|
|||||||
{
|
{
|
||||||
$client = new Facebookclient($notice);
|
$client = new Facebookclient($notice);
|
||||||
$client->streamRemove();
|
$client->streamRemove();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user