modtemplatevartemplate.class.php 731 B

1234567891011121314151617181920212223
  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. * Represents a relationship between a template and a template variable. All TVs can be assigned to show on specified
  12. * Templates.
  13. *
  14. * @property int $tmplvarid The ID of the related TV
  15. * @property int $templateid The ID of the related Template
  16. * @property int $rank The rank that this TV will show in relation to other TVs assigned to this Template
  17. *
  18. * @see modTemplateVar
  19. * @see modTemplate
  20. * @package modx
  21. */
  22. class modTemplateVarTemplate extends xPDOObject {}