* i18n/L10n updates
* whitespace updates.
This commit is contained in:
@@ -45,7 +45,6 @@ require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
|
||||
* @link http://status.net/
|
||||
* @link http://twitter.com/
|
||||
*/
|
||||
|
||||
class TwitterBridgePlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -55,7 +54,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
/**
|
||||
* Initializer for the plugin.
|
||||
*/
|
||||
|
||||
function initialize()
|
||||
{
|
||||
// Allow the key and secret to be passed in
|
||||
@@ -86,7 +84,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return boolean result
|
||||
*/
|
||||
|
||||
static function hasKeys()
|
||||
{
|
||||
$ckey = common_config('twitter', 'consumer_key');
|
||||
@@ -113,7 +110,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook return
|
||||
*/
|
||||
|
||||
function onRouterInitialized($m)
|
||||
{
|
||||
$m->connect('admin/twitter', array('action' => 'twitteradminpanel'));
|
||||
@@ -310,7 +306,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook value
|
||||
*/
|
||||
|
||||
function onPluginVersion(&$versions)
|
||||
{
|
||||
$versions[] = array(
|
||||
@@ -319,8 +314,8 @@ class TwitterBridgePlugin extends Plugin
|
||||
'author' => 'Zach Copley, Julien C',
|
||||
'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge',
|
||||
'rawdescription' => _m(
|
||||
'The Twitter "bridge" plugin allows you to integrate ' .
|
||||
'your StatusNet instance with ' .
|
||||
'The Twitter "bridge" plugin allows integration ' .
|
||||
'of a StatusNet instance with ' .
|
||||
'<a href="http://twitter.com/">Twitter</a>.'
|
||||
)
|
||||
);
|
||||
@@ -374,7 +369,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook value; true means continue processing, false means stop.
|
||||
*/
|
||||
|
||||
function onCheckSchema()
|
||||
{
|
||||
$schema = Schema::get();
|
||||
@@ -416,7 +410,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return boolean hook value
|
||||
*/
|
||||
|
||||
function onStartDeleteOwnNotice(User $user, Notice $notice)
|
||||
{
|
||||
$n2s = Notice_to_status::staticGet('notice_id', $notice->id);
|
||||
@@ -452,7 +445,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
* @param Notice $notice being favored
|
||||
* @return hook return value
|
||||
*/
|
||||
|
||||
function onEndFavorNotice(Profile $profile, Notice $notice)
|
||||
{
|
||||
$flink = Foreign_link::getByUserID($profile->id,
|
||||
@@ -489,7 +481,6 @@ class TwitterBridgePlugin extends Plugin
|
||||
*
|
||||
* @return hook return value
|
||||
*/
|
||||
|
||||
function onEndDisfavorNotice(Profile $profile, Notice $notice)
|
||||
{
|
||||
$flink = Foreign_link::getByUserID($profile->id,
|
||||
|
Reference in New Issue
Block a user