58 lines
2.4 KiB
PHP
58 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* The edit view of company module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv11.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package company
|
|
* @version $Id: edit.html.php 4713 2013-05-02 08:04:38Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id='titlebar'>
|
|
<div class='heading'>
|
|
<strong><?php echo $company->name;?></strong>
|
|
<small class='text-muted'> <?php echo $lang->company->edit;?> <?php echo html::icon($lang->icons['edit']);?></small>
|
|
</div>
|
|
</div>
|
|
<form class='form-condensed mw-500px pdb-20' method='post' target='hiddenwin'>
|
|
<table align='center' class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->company->name;?></th>
|
|
<td><?php echo html::input('name', $company->name, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->phone;?></th>
|
|
<td><?php echo html::input('phone', $company->phone, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->fax;?></th>
|
|
<td><?php echo html::input('fax', $company->fax, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->address;?></th>
|
|
<td><?php echo html::input('address', $company->address, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->zipcode;?></th>
|
|
<td><?php echo html::input('zipcode', $company->zipcode, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->website;?></th>
|
|
<td><?php echo html::input('website', $company->website ? $company->website : 'http://', "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->backyard;?></th>
|
|
<td><?php echo html::input('backyard', $company->backyard ? $company->backyard : 'http://', "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->company->guest;?></th>
|
|
<td><?php echo html::radio('guest', $lang->company->guestList, $company->guest);?></td>
|
|
</tr>
|
|
<tr><td></td><td><?php echo html::submitButton();?></td></tr>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.html.php';?>
|