mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
18 lines
379 B
PHP
18 lines
379 B
PHP
|
<?php
|
||
|
/**
|
||
|
* API functions
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Check API credentials
|
||
|
*
|
||
|
* @param String $serviceName The name of the service
|
||
|
* @param String $token The service's token
|
||
|
* @param String $bdd BDD object
|
||
|
* @return Boolean True or false / Depending of validity of credentials
|
||
|
*/
|
||
|
function API_checkCredentials($serviceName, $token, $bdd){
|
||
|
|
||
|
}
|