modclassmap.class.php 770 B

123456789101112131415161718192021222324
  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 class map for storing class relationships.
  12. *
  13. * @deprecated Use $modx->getDescendants as of 2.2.
  14. *
  15. * @property string $class The name of the class
  16. * @property string $parent_class The parent class this class extends
  17. * @property string $name_field The name of the unique field to grab as a title for this field
  18. * @property string $path The path to the class file
  19. * @property string $lexicon Any lexicon items to load for this class
  20. * @package modx
  21. */
  22. class modClassMap extends xPDOSimpleObject {
  23. }