summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Pages/Posts/config.php
blob: 8af0dd5600ad6d8465b07f4224476908d5fa1589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
return array(
	'authorization' => array(
		array(
			'action' => 'deny',
			'pages' => 'EditPost,NewPost,MyPost',
			'users' => '?',
		),
		array(
			'action' => 'allow',
			'pages' => 'NewCategory,EditCategory',
			'users' => 'admin',
		),
		array(
			'action' => 'deny',
			'pages' => 'NewCategory,EditCategory',
			'users' => '*',
		),
	)
);