modtemplatevarresourcegroup.class.php 681 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 relation between Template Variables and Resource Groups. Only user groups with the specified Resource Groups, if
  12. * any are set, will be able to edit the TV.
  13. *
  14. * @property int $tmplvarid The ID of the related TV
  15. * @property int $documentgroup The ID of the related Resource Group
  16. *
  17. * @see modResourceGroup
  18. * @see modTemplateVar
  19. * @package modx
  20. */
  21. class modTemplateVarResourceGroup extends xPDOSimpleObject {}