acl.ini 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ;<?php exit() ?>
  2. ; SVN FILE: $Id$
  3. ;/**
  4. ; * Test App Ini Based Acl Config File
  5. ; *
  6. ; * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  7. ; * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  8. ; *
  9. ; * Licensed under The MIT License
  10. ; * Redistributions of files must retain the above copyright notice.
  11. ; *
  12. ; * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  13. ; * @link https://cakephp.org CakePHP(tm) Project
  14. ; * @since 0.10.0
  15. ; * @license https://opensource.org/licenses/mit-license.php MIT License
  16. ; */
  17. ;-------------------------------------
  18. ;Users
  19. ;-------------------------------------
  20. [admin]
  21. groups = administrators
  22. allow =
  23. deny = ads
  24. [paul]
  25. groups = users
  26. allow =
  27. deny =
  28. [jenny]
  29. groups = users
  30. allow = ads
  31. deny = images, files
  32. [nobody]
  33. groups = anonymous
  34. allow =
  35. deny =
  36. ;-------------------------------------
  37. ;Groups
  38. ;-------------------------------------
  39. [administrators]
  40. deny =
  41. allow = posts, comments, images, files, stats, ads
  42. [users]
  43. allow = posts, comments, images, files
  44. deny = stats, ads
  45. [anonymous]
  46. allow =
  47. deny = posts, comments, images, files, stats, ads