35 lines
1.6 KiB
PHP
35 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* The build contact lists view file of my module of ZentaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Fei Chen<chenfei@cnezsoft.com>
|
|
* @package my
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php
|
|
if($contactLists)
|
|
{
|
|
echo html::select('contactListMenu', $contactLists, '', "class='form-control chosen' onchange=\"setMailto('mailto', this.value)\"");
|
|
}
|
|
else
|
|
{
|
|
echo '<span class="input-group-btn">';
|
|
echo '<a title="' . $lang->user->contacts->manage . '" href="' . $this->createLink('my', 'managecontacts', "listID=0&mode=new", '', true) . "\" target='_blank' data-icon='cog' data-title='{$lang->user->contacts->manage}' class='btn btn-icon iframe'><i class='icon icon-cog'></i></a>";
|
|
echo '</span>';
|
|
echo '<span class="input-group-btn">';
|
|
echo '<button type="button" title="' . $lang->refresh . '" class="btn btn-icon" onclick="ajaxGetContacts(this)"><i class="icon icon-refresh"></i></button>';
|
|
echo '</span>';
|
|
}
|
|
?>
|
|
<style>
|
|
#contactListMenu_chosen {width: 100px !important;}
|
|
#contactListMenu + .chosen-container {min-width: 100px;}
|
|
td > #mailto + .chosen-container .chosen-choices {border-radius: 2px 2px 0 0;}
|
|
td > #mailto + .chosen-container + #contactListMenu + .chosen-container > .chosen-single {border-radius: 0 0 2px 2px; border-top-width: 0; padding-top: 6px;}
|
|
#contactListMenu + .chosen-container.chosen-container-active > .chosen-single {border-top-width: 1px !important; padding-top: 5px !important;}
|
|
</style>
|