AdminMenuAnnotation.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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\Annotation;
  13. /**
  14. * Specifies validation of a string, requiring a minimum and/or maximum length.
  15. *
  16. * @usage('method'=>true, 'inherited'=>true, 'multiple'=>false)
  17. */
  18. class AdminMenuAnnotation extends Annotation
  19. {
  20. public $remark = '';
  21. public $icon = '';
  22. public $name = '';
  23. public $param = '';
  24. public $parent = '';
  25. public $display = false;
  26. public $order = 10000;
  27. public $hasView = true;
  28. /**
  29. * Initialize the annotation.
  30. * @param array $properties
  31. */
  32. public function initAnnotation(array $properties)
  33. {
  34. parent::initAnnotation($properties);
  35. }
  36. }