| 123456789101112131415161718192021 |
- <?php
- /*
- * This file is part of MODX Revolution.
- *
- * Copyright (c) MODX, LLC. All Rights Reserved.
- *
- * For complete copyright and license information, see the COPYRIGHT and LICENSE
- * files found in the top-level directory of this distribution.
- */
- /**
- * A grouping class used for classifying what targets Access Policies (and their Templates) should be applied towards.
- *
- * @property string $name The name of the Group
- * @property string $description A description of the Group
- *
- * @see modAccessPolicyTemplate
- * @package modx
- */
- class modAccessPolicyTemplateGroup extends xPDOSimpleObject {
- }
|