README 443 B

123456789101112131415161718
  1. Plugin to prevent use of nicknames or URLs on a blacklist
  2. Installation
  3. ============
  4. add "addPlugin('Blacklist');"
  5. to the bottom of your config.php
  6. Settings
  7. ========
  8. nicknames: Array of nicknames to blacklist
  9. urls: Array of URLs to blacklist
  10. Example
  11. =======
  12. $config['blacklist']['nicknames'] = array('bad_nickname', 'worse_nickname');
  13. $config['blacklist']['urls'] = array('http://example.org', 'http://example.net');
  14. addPlugin('Blacklist');