modcontextresource.class.php 644 B

123456789101112131415161718192021
  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 modContext and a modResource.
  12. *
  13. * @property string $context_key The key of the Context
  14. * @property int $resource The ID of the related Resource
  15. *
  16. * @package modx
  17. * @todo Work this relationship into use in the manager and the logic of each
  18. * {@link modResource::process()} implementation.
  19. */
  20. class modContextResource extends xPDOObject {}