mirror of
https://github.com/laurent22/joplin.git
synced 2025-02-07 19:30:04 +02:00
15 lines
720 B
PHP
15 lines
720 B
PHP
<form method="post">
|
|
<?php foreach ($item as $k => $v): ?>
|
|
<div class="form-group">
|
|
<label><?php echo htmlentities($k); ?></label>
|
|
<?php if ($k == 'body'): ?>
|
|
<textarea class="form-control" name="item_<?php echo htmlentities($k); ?>"><?php echo htmlentities($v); ?></textarea>
|
|
<?php else: ?>
|
|
<input type="text" class="form-control" name="item_<?php echo htmlentities($k); ?>" value="<?php echo htmlentities($v); ?>" >
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<input type="hidden" value="<?php echo htmlentities(json_encode($item)); ?>" name="original_item" />
|
|
<input type="hidden" value="<?php echo $type; ?>" name="type" />
|
|
<input type="submit" value="Save" name="update_item" />
|
|
</form>
|