modaccesspolicytemplate.class.php 1015 B

1234567891011121314151617181920212223242526
  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. * A collection of modAccessPermission records that are used as a Template for custom modAccessPolicy objects. Is
  12. * grouped into Access Policy Template Groups to provide targeted policy access implementations.
  13. *
  14. * @property int $template_group The group that this template is a part of, used for targeting usage of applied Policies
  15. * @property string $name The name of the Policy Template
  16. * @property string $description A description of the Policy Template
  17. * @property string $lexicon Optional. A lexicon that may be loaded to provide translations for all included Permissions
  18. *
  19. * @see modAccessPolicy
  20. * @see modAccessPermission
  21. * @see modAccessPolicyTemplateGroup
  22. * @package modx
  23. */
  24. class modAccessPolicyTemplate extends xPDOSimpleObject {
  25. }