modformcustomizationprofile.class.php 835 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. * A collection of modFormCustomizationSet objects that can be restricted to certain User Groups.
  12. *
  13. * @property string $name The name of the Profile
  14. * @property string $description A user-provided description of this Profile
  15. * @property boolean $active Whether or not this Profile's Sets and Rules will be applied
  16. * @property int $rank The order in which the Profile will be executed relative to other Profiles
  17. * @see modFormCustomizationSet
  18. * @see modFormCustomizationProfileUserGroup
  19. * @package modx
  20. */
  21. class modFormCustomizationProfile extends xPDOSimpleObject {}