modtemplatevarresource.class.php 621 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. * Stores the value of a TV for a specific Resource
  12. *
  13. * @property int $tmplvarid The ID of the related TV
  14. * @property int $contentid The ID of the related Resource
  15. * @property string $value The stored value of the TV for the Resource
  16. *
  17. * @see modTemplateVar
  18. * @see modResource
  19. * @package modx
  20. */
  21. class modTemplateVarResource extends xPDOSimpleObject {}