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