18 lines
669 B
PHP
18 lines
669 B
PHP
<?php
|
|
/**
|
|
* The build contact lists view file of my module of ZentaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Fei Chen<chenfei@cnezsoft.com>
|
|
* @package my
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php if($contactLists):?>
|
|
<div class="control">
|
|
<div class='select'><?php echo html::select('', $contactLists, '', "class='form-control chosen' onchange=\"setMailto('mailto', this.value)\"");?></div>
|
|
</div>
|
|
<?php endif;?>
|