README 457 B

123456789101112131415161718192021222324
  1. The ShareNotice plugin allows sharing of notices to Twitter, Facebook and other
  2. platforms.
  3. Installation
  4. ============
  5. add "addPlugin('ShareNotice');"
  6. to the bottom of your config.php
  7. Settings
  8. ========
  9. targets: Array of platforms allowed to share to
  10. Example
  11. =======
  12. addPlugin('ShareNotice', array(
  13. 'targets' => array(
  14. array('Twitter'),
  15. array('Facebook'),
  16. array('StatusNet', array('baseurl' => 'http://example.org'))
  17. )
  18. ));