modactionfield.class.php 912 B

123456789101112131415161718192021222324252627
  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. * An abstract representation of MODX manager fields; used for Form Customization
  12. *
  13. * @property int $action The modAction this field occurs on
  14. * @property string $name The name or ID of the field/tab
  15. * @property string $type Either field or tab, which classifies what type of object this record is
  16. * @property string $tab Specifies which tab the field is on
  17. * @property string $form The form DOM ID
  18. * @property string $other Used on tabs to delineate TV tabs
  19. * @property int $rank The order in which this field occurs
  20. *
  21. * @see modActionDom
  22. * @see modFormCustomizationSet
  23. * @package modx
  24. */
  25. class modActionField extends xPDOSimpleObject {
  26. }