core/api/admin/assets/demo/server/remove-event.php

8 lines
194 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
// this is our event id
// We need to find this event in the database and delete it
$id = $_POST['id'];
// but this is a test project so we return true
return true;
?>