File: /www/wwwroot/oa.sanjiangapp.com/app/sys/schema/view/browse.html.php
<?php
/**
* The browse view file of schema module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package schema
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
<div id='menuActions'>
<?php commonModel::printLink('schema', 'create', '', "{$lang->schema->create}", "data-toggle='modal' class='btn btn-primary' data-width='600px'");?>
</div>
<div class='panel main-table' data-ride='table'>
<table class='table' id='schemaList'>
<thead>
<tr class='text-center'>
<th class='w-70px'><?php echo $lang->trade->id;?></th>
<th class='text-left'><?php echo $lang->schema->name;?></th>
<th class='w-140px'><?php echo $lang->actions;?></th>
</tr>
</thead>
<tbody>
<?php foreach($schemas as $schema):?>
<tr class='text-center'>
<td><?php echo $schema->id;?></td>
<td class='text-left'><?php echo $schema->name;?></td>
<td>
<?php commonModel::printLink('schema', 'view', "schema={$schema->id}", $lang->view, "data-toggle='modal'");?>
<?php commonModel::printLink('schema', 'edit', "schemaID={$schema->id}", $lang->edit);?>
<?php commonModel::printLink('schema', 'delete', "schemaID={$schema->id}", $lang->delete, "class='deleter'");?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
<?php include '../../common/view/footer.html.php';?>