extension.php 338 B

12345678910
  1. <?php
  2. class GoogleGroupsExtension extends Minz_Extension {
  3. public function init() {
  4. $this->registerHook('check_url_before_add', array('GoogleGroupsExtension', 'findFeed'));
  5. }
  6. public static function findFeed($url) {
  7. return preg_replace('%^(https?://groups.google.com/forum)/#!forum/(.+)$%i', '$1/feed/$2/msgs/rss.xml', $url);
  8. }
  9. }