acl.ini 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ;<?php exit() ?>
  2. ; SVN FILE: $Id$
  3. ;/**
  4. ; * Test App Ini Based Acl Config File
  5. ; *
  6. ; *
  7. ; * PHP 5
  8. ; *
  9. ; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  10. ; * Copyright 2005-2012, 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-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  16. ; * @link http://cakephp.org CakePHP(tm) Project
  17. ;; * @package Cake.Test.test_app.Config
  18. ; * @since CakePHP(tm) v 0.10.0.1076
  19. ; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  20. ; */
  21. ;-------------------------------------
  22. ;Users
  23. ;-------------------------------------
  24. [admin]
  25. groups = administrators
  26. allow =
  27. deny = ads
  28. [paul]
  29. groups = users
  30. allow =
  31. deny =
  32. [jenny]
  33. groups = users
  34. allow = ads
  35. deny = images, files
  36. [nobody]
  37. groups = anonymous
  38. allow =
  39. deny =
  40. ;-------------------------------------
  41. ;Groups
  42. ;-------------------------------------
  43. [administrators]
  44. deny =
  45. allow = posts, comments, images, files, stats, ads
  46. [users]
  47. allow = posts, comments, images, files
  48. deny = stats, ads
  49. [anonymous]
  50. allow =
  51. deny = posts, comments, images, files, stats, ads