comparison cake/tests/test_app/config/acl.ini.php @ 0:261e66bd5a0c

hg init
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Jul 2011 21:08:31 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:261e66bd5a0c
1 ;<?php exit() ?>
2 ; SVN FILE: $Id$
3 ;/**
4 ; * Test App Ini Based Acl Config File
5 ; *
6 ; *
7 ; * PHP versions 4 and 5
8 ; *
9 ; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
10 ; * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
11 ; *
12 ; * Licensed under The MIT License
13 ; * Redistributions of files must retain the above copyright notice.
14 ; *
15 ; * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
16 ; * @link http://cakephp.org CakePHP(tm) Project
17 ; * @package cake
18 ; * @subpackage cake.app.config
19 ; * @since CakePHP(tm) v 0.10.0.1076
20 ; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
21 ; */
22
23 ;-------------------------------------
24 ;Users
25 ;-------------------------------------
26
27 [admin]
28 groups = administrators
29 allow =
30 deny = ads
31
32 [paul]
33 groups = users
34 allow =
35 deny =
36
37 [jenny]
38 groups = users
39 allow = ads
40 deny = images, files
41
42 [nobody]
43 groups = anonymous
44 allow =
45 deny =
46
47 ;-------------------------------------
48 ;Groups
49 ;-------------------------------------
50
51 [administrators]
52 deny =
53 allow = posts, comments, images, files, stats, ads
54
55 [users]
56 allow = posts, comments, images, files
57 deny = stats, ads
58
59 [anonymous]
60 allow =
61 deny = posts, comments, images, files, stats, ads