blob: 9d99d998baa208a7c795a74a33f2e36513c3572d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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
}
|