forked from mapasculturais/mapasculturais
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.php
More file actions
19 lines (18 loc) · 1.01 KB
/
edit.php
File metadata and controls
19 lines (18 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<a href="<?php echo $this->controller->createUrl('list') ?>"><?php \MapasCulturais\i::_e("list");?></a>
<table id="user" class="table table-bordered table-striped" style="clear: both">
<?php foreach ($fields as $field): ?>
<tr>
<td><?php echo $field['fieldLabel']?></td>
<td>
<?php if($field['fieldName'] == 'id'): ?>
<input type="hidden" name="id" value="<?php echo $object->id?>"/>
<?php echo $object->id; ?>
<?php elseif($field['type'] == 'string' OR $field['type'] == 'integer' OR $field['type'] == 'smallint'): ?>
<input type="text" name="<?php echo $field['fieldName']?>" value="<?php echo $object->$field['fieldName']?>"/>
<?php elseif($field['type'] == 'text'): ?>
<textarea name="<?php echo $field['fieldName']?>"><?php echo $object->$field['fieldName'] ?></textarea>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</table>