??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/renovaid.co.uk/wp-content/plugins/latepoint/lib/abilities/services/get-service.php
⬅ Kembali
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class LatePointAbilityGetService extends LatePointAbstractServiceAbility {
protected function configure(): void {
$this->id = 'latepoint/get-service';
$this->label = __( 'Get service', 'latepoint' );
$this->description = __( 'Returns a single service by ID with full detail.', 'latepoint' );
$this->permission = 'service__view';
$this->read_only = true;
}
public function get_input_schema(): array {
return [
'type' => 'object',
'properties' => [
'id' => [
'type' => 'integer',
'description' => __( 'Service ID.', 'latepoint' ),
],
],
'required' => [ 'id' ],
];
}
public function get_output_schema(): array {
return $this->service_output_schema();
}
public function execute( array $args ) {
$service = new OsServiceModel( (int) $args['id'] );
if ( $service->is_new_record() ) {
return new WP_Error( 'not_found', __( 'Service not found.', 'latepoint' ), [ 'status' => 404 ] );
}
return $this->serialize_service( $service );
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 abstract-service-ability.php
php
1.7 KB
2026-03-10 11:15
🐘 create-service.php
php
2.7 KB
2026-03-10 11:15
🐘 delete-service.php
php
1.5 KB
2026-03-10 11:15
🐘 disable-service.php
php
1.4 KB
2026-03-10 11:15
🐘 duplicate-service.php
php
2.2 KB
2026-03-10 11:15
🐘 enable-service.php
php
1.4 KB
2026-03-10 11:15
🐘 get-service-agents.php
php
2.1 KB
2026-03-10 11:15
🐘 get-service-bookings.php
php
3.3 KB
2026-03-10 11:15
🐘 get-service.php
php
1.1 KB
2026-03-10 11:15
🐘 get-services.php
php
1.6 KB
2026-03-10 11:15
🐘 list-service-categories.php
php
1.2 KB
2026-03-10 11:15
🐘 update-service.php
php
2.6 KB
2026-03-10 11:15