AdminMenuRootAnnotation.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <zxxjjforever@163.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\annotation;
  12. use mindplay\annotations\AnnotationException;
  13. use mindplay\annotations\Annotation;
  14. /**
  15. * Specifies validation of a string, requiring a minimum and/or maximum length.
  16. *
  17. * @usage('class'=>true, 'inherited'=>true, 'multiple'=>true)
  18. */
  19. class AdminMenuRootAnnotation extends Annotation
  20. {
  21. /**
  22. * @var int|null Minimum string length (or null, if no minimum)
  23. */
  24. public $remark = '';
  25. /**
  26. * @var int|null Maximum string length (or null, if no maximum)
  27. */
  28. public $icon = '';
  29. /**
  30. * @var int|null Minimum string length (or null, if no minimum)
  31. */
  32. public $name = '';
  33. public $action = '';
  34. public $param = '';
  35. public $parent = '';
  36. public $display = false;
  37. public $order = 10000;
  38. /**
  39. * Initialize the annotation.
  40. * @param array $properties
  41. */
  42. public function initAnnotation(array $properties)
  43. {
  44. parent::initAnnotation($properties);
  45. }
  46. }