Add helper methods to quickly check if a service is assigned to a provider

This commit is contained in:
Alex Tselegidis 2023-04-15 14:34:23 +02:00
parent 6fc45c3368
commit f540192570
1 changed files with 15 additions and 0 deletions

View File

@ -1012,4 +1012,19 @@ class Providers_model extends EA_Model {
$provider = $decoded_resource; $provider = $decoded_resource;
} }
/**
* Quickly check if a service is assigned to a provider.
*
* @param int $provider_id
* @param int $service_id
*
* @return bool
*/
public function is_service_supported(int $provider_id, int $service_id): bool
{
$provider = $this->find($provider_id);
return in_array($service_id, $provider['services']);
}
} }