ircs.php 668 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Validates irc
  4. */
  5. class HTMLPurifier_URIScheme_ircs extends HTMLPurifier_URIScheme
  6. {
  7. /**
  8. * @type int
  9. */
  10. // public $default_port = 6697;
  11. /**
  12. * @type bool
  13. */
  14. public $secure = true;
  15. /**
  16. * @type bool
  17. */
  18. public $browsable = false;
  19. /**
  20. * @type bool
  21. */
  22. public $hierarchical = true;
  23. /**
  24. * @param HTMLPurifier_URI $uri
  25. * @param HTMLPurifier_Config $config
  26. * @param HTMLPurifier_Context $context
  27. * @return bool
  28. */
  29. public function doValidate(&$uri, $config, $context)
  30. {
  31. $uri->userinfo = null;
  32. return true;
  33. }
  34. }
  35. // vim: et sw=4 sts=4