Remove the 'Enable Twitter import' checkbox from Twitter admin panel by default; can be re-added with setting:
addPlugin('TwitterBridge', array('adminImportControl' => true, ....)); Added a note on the label that it requires manual daemon setup. (Note that by default the admin panel won't be shown, so it's no biggie to be hiding this for now.)
This commit is contained in:
@@ -50,6 +50,7 @@ class TwitterBridgePlugin extends Plugin
|
||||
{
|
||||
|
||||
const VERSION = STATUSNET_VERSION;
|
||||
public $adminImportControl = false; // Should the 'import' checkbox be exposed in the admin panel?
|
||||
|
||||
/**
|
||||
* Initializer for the plugin.
|
||||
@@ -322,5 +323,17 @@ class TwitterBridgePlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Expose the adminImportControl setting to the administration panel code.
|
||||
* This allows us to disable the import bridge enabling checkbox for administrators,
|
||||
* since on a bulk farm site we can't yet automate the import daemon setup.
|
||||
*
|
||||
* @return boolean hook value;
|
||||
*/
|
||||
function onTwitterBridgeAdminImportControl()
|
||||
{
|
||||
return (bool)$this->adminImportControl;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user