modmanagerlog.class.php 716 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 records of all manager actions.
  12. *
  13. * @property int $user The user ID of the actor
  14. * @property datetime $occurred The time the action occurred.
  15. * @property string $action The action key that occurred.
  16. * @property string $classKey The class name of the object that was acted upon.
  17. * @property string $item The PK of the class type defined by classKey that was acted upon.
  18. *
  19. * @package modx
  20. */
  21. class modManagerLog extends xPDOSimpleObject {}