<?php

Router::register('groups/new'  , 'Groups', 'new_group');
Router::register('groups/index', 'Groups', 'index_file');
Router::register('groups'      , 'Groups', 'index_dir');
Router::register('groups/*'    , 'Groups', 'individual');

class Groups extends Controller {
	public static $illegal_names = array('', 'new', 'index');
	// TODO
}