??????????????
??????????????
??????????????
??????????????
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/locations/get-location.php
⬅ Kembali
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class LatePointAbilityGetLocation extends LatePointAbstractLocationAbility {
protected function configure(): void {
$this->id = 'latepoint/get-location';
$this->label = __( 'Get location', 'latepoint' );
$this->description = __( 'Returns a single location by ID.', 'latepoint' );
$this->permission = 'location__view';
$this->read_only = true;
}
public function get_input_schema(): array {
return [
'type' => 'object',
'properties' => [
'id' => [
'type' => 'integer',
'description' => __( 'Location ID.', 'latepoint' ),
],
],
'required' => [ 'id' ],
];
}
public function get_output_schema(): array {
return $this->location_output_schema();
}
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 ] );
}
return $this->serialize_location( $location );
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 abstract-location-ability.php
php
1.2 KB
2026-03-10 11:15
🐘 create-location.php
php
2 KB
2026-03-10 11:15
🐘 delete-location.php
php
1.5 KB
2026-03-10 11:15
🐘 disable-location.php
php
1.5 KB
2026-03-10 11:15
🐘 enable-location.php
php
1.5 KB
2026-03-10 11:15
🐘 get-location-agents.php
php
2.2 KB
2026-03-10 11:15
🐘 get-location-services.php
php
1.9 KB
2026-03-10 11:15
🐘 get-location.php
php
1 KB
2026-03-10 11:15
🐘 list-location-categories.php
php
1.3 KB
2026-03-10 11:15
🐘 list-locations.php
php
1.4 KB
2026-03-10 11:15
🐘 update-location.php
php
2 KB
2026-03-10 11:15