FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
latepoint
/
lib
/
abilities
/
agents
Edit File: disable-agent.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } class LatePointAbilityDisableAgent extends LatePointAbstractAgentAbility { protected function configure(): void { $this->id = 'latepoint/disable-agent'; $this->label = __( 'Disable agent', 'latepoint' ); $this->description = __( 'Disables an agent so they no longer appear on the booking form. Existing bookings are not affected.', 'latepoint' ); $this->permission = 'agent__edit'; $this->read_only = false; $this->destructive = false; $this->idempotent = true; } public function get_input_schema(): array { return [ 'type' => 'object', 'properties' => [ 'id' => [ 'type' => 'integer', 'description' => __( 'Agent ID.', 'latepoint' ), ], ], 'required' => [ 'id' ], ]; } public function get_output_schema(): array { return $this->agent_output_schema(); } public function execute( array $args ) { $agent = new OsAgentModel( (int) $args['id'] ); if ( $agent->is_new_record() ) { return new WP_Error( 'not_found', __( 'Agent not found.', 'latepoint' ), [ 'status' => 404 ] ); } $agent->status = LATEPOINT_AGENT_STATUS_DISABLED; if ( ! $agent->save() ) { return new WP_Error( 'save_failed', __( 'Failed to disable agent.', 'latepoint' ), [ 'status' => 422 ] ); } return $this->serialize_agent( new OsAgentModel( $agent->id ) ); } }
Save
Back