aboutsummaryrefslogtreecommitdiff
path: root/lib/core-extensions/Google-Groups/extension.php
blob: 656bf9b8fe93af14093c6192eac32b2ad70abdbc (plain)
1
2
3
4
5
6
7
8
9
10
<?php
class GoogleGroupsExtension extends Minz_Extension {
	public function init() {
		$this->registerHook('check_url_before_add', array('GoogleGroupsExtension', 'findFeed'));
	}

	public static function findFeed($url) {
		return preg_replace('%^(https?://groups.google.com/forum)/#!forum/(.+)$%i', '$1/feed/$2/msgs/rss.xml', $url);
	}
}