| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * The edit view file of chart of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL (http://zpl.pub/page/zplv12.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package chart
- * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php $biPath = $this->app->getModuleExtPath('bi', 'view');?>
- <div id='mainMenu' class='clearfix'>
- <div class='btn-toolbar pull-left'>
- <div class='page-title'>
- <span title='<?php echo $title;?>' class='text'><?php echo $title;?></span>
- </div>
- </div>
- </div>
- <div id='mainContent' class='main-content'>
- <div class='center-block'>
- <form class='form-ajax' method='post'>
- <table class="table table-form">
- <tr>
- <th class='w-100px'><?php echo $lang->chart->group;?></th>
- <td class='w-400px'>
- <?php echo html::select('group[]', $groups, $chart->group, "class='chosen form-control' data-max_drop_width='200' multiple");?>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->chart->name;?></th>
- <td><?php echo html::input('name', $chart->name, "class='form-control'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->bi->driver;?></th>
- <td>
- <?php echo html::select('driver', $lang->bi->driverList, $chart->driver, "class='chosen form-control' data-max_drop_width='200'");?>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->chart->desc;?></th>
- <td><?php echo html::textarea('desc', $chart->desc, "class='form-control' rows='7'");?></td>
- </tr>
- <?php $acl = $chart->acl;?>
- <?php $aclList = $lang->chart->aclList;?>
- <?php $whitelist = $chart->whitelist;?>
- <?php include $biPath['common'] . 'aclbox.html.php';?>
- <tr>
- <td colspan='2' class='form-actions text-center'>
- <?php echo html::submitButton();?>
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|