social-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Social-discuss] synctwitterfriends.php is it needed when ...


From: Knut Erik Hollund
Subject: [Social-discuss] synctwitterfriends.php is it needed when ...
Date: Mon, 6 Oct 2014 11:33:41 +0200

Hi,

Anybody know if daemon synctwitterfriends.php is needed, when the only function 
enabled on the instance is to push your messages to your twitter account? (Not 
from twitter to gnusocial)

Ref. setting - $config['twitterimport']['enabled'] = false;

If I understand it correctly the synctwitterfriends.php does not need to be 
started if twitter import is not enabled and should also be checked for the 
common config twitterimport = enabled.

Regards,
Knut Erik

---

(From TwitterPlugin.php)

 function onGetValidDaemons(&$daemons)
    {
        if (self::hasKeys()) {
            array_push(
                $daemons,
                INSTALLDIR
                . '/plugins/TwitterBridge/daemons/synctwitterfriends.php'
            );
            if (common_config('twitterimport', 'enabled')) {
                array_push(
                    $daemons,
                    INSTALLDIR
                    . '/plugins/TwitterBridge/daemons/twitterstatusfetcher.php'
                    );
            }
        }

        return true;
    }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]