v1.php 620 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The whitelist widget class file of zin module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  6. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Gang Liu <liugang@easycorp.ltd>
  8. * @package zin
  9. * @link http://www.zentao.net
  10. */
  11. namespace zin;
  12. requireWg('userpicker');
  13. class whitelist extends userPicker
  14. {
  15. /**
  16. * @var mixed[]
  17. */
  18. protected static $defaultProps = array(
  19. 'name' => 'whitelist[]'
  20. );
  21. }