FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
latepoint
/
lib
/
abilities
/
locations
Edit File: delete-location.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } class LatePointAbilityDeleteLocation extends LatePointAbstractLocationAbility { protected function configure(): void { $this->id = 'latepoint/delete-location'; $this->label = __( 'Delete location', 'latepoint' ); $this->description = __( 'Permanently deletes a location and removes all agent and service assignments. This cannot be undone.', 'latepoint' ); $this->permission = 'location__delete'; $this->read_only = false; $this->destructive = true; $this->idempotent = false; } public function get_input_schema(): array { return [ 'type' => 'object', 'properties' => [ 'id' => [ 'type' => 'integer', 'description' => __( 'Location ID to delete.', 'latepoint' ), ], ], 'required' => [ 'id' ], ]; } public function get_output_schema(): array { return [ 'type' => 'object', 'properties' => [ 'deleted' => [ 'type' => 'boolean' ], 'id' => [ 'type' => 'integer' ], ], ]; } public function execute( array $args ) { $location = new OsLocationModel( (int) $args['id'] ); if ( $location->is_new_record() ) { return new WP_Error( 'not_found', __( 'Location not found.', 'latepoint' ), [ 'status' => 404 ] ); } $id = (int) $location->id; if ( ! $location->delete() ) { return new WP_Error( 'delete_failed', __( 'Failed to delete location.', 'latepoint' ), [ 'status' => 500 ] ); } return [ 'deleted' => true, 'id' => $id, ]; } }
Save
Back