add, remove, edit lease

This commit is contained in:
Tóth Richárd
2019-08-26 13:38:51 +02:00
parent e18c039529
commit 5bef1596f4
12 changed files with 578 additions and 52 deletions

View File

@@ -0,0 +1,9 @@
<?php
if ($this->is_id()) {
$sql->update_table('lease', array('l_deleted' => 1), array('l_id' => $this->get_id()));
log::register('delete_lease', $this->get_id());
header("Location: /admin/lease");
}
?>