modaccesspermission.class.php 735 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of MODX Revolution.
  4. *
  5. * Copyright (c) MODX, LLC. All Rights Reserved.
  6. *
  7. * For complete copyright and license information, see the COPYRIGHT and LICENSE
  8. * files found in the top-level directory of this distribution.
  9. */
  10. /**
  11. * Restricts or grants access to certain functionality. Grouped by Access
  12. * Policy Template.
  13. *
  14. * @property int $template The Access Policy Template this Permission belongs to
  15. * @property string $name The key of this Permission
  16. * @property string $description The description informing what this Permission allows
  17. * @property boolean $value Whether or not this permission is allowed or denied
  18. *
  19. * @package modx
  20. */
  21. class modAccessPermission extends xPDOSimpleObject {}