1. Go to this page and download the library: Download idci/sam-client-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
idci / sam-client-bundle example snippets
use IDCI\Bundle\SAMClientBundle\Client\SAMApiClient;
...
$this->samApiClient->createActivity(20000, [
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);
$this->samApiClient->createActivityByInternalNumber('internalNumber', [
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);
$this->samApiClient->createActivityByExternalId('externalId', [
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);
use IDCI\Bundle\SAMClientBundle\Client\SAMApiClient;
use IDCI\Bundle\SAMClientBundle\Client\Model\Enum\UpdateActivityInputState;
...
$this->samApiClient->updateActivity(20000, 'A020', [
'status' => UpdateActivityInputState::Paused,
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);
$this->samApiClient->createActivityByInternalNumber('internalNumber', 'A020', [
'status' => UpdateActivityInputState::Paused,
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);
$this->samApiClient->createActivityByExternalId('externalId', 'A020', [
'status' => UpdateActivityInputState::Paused,
'date' => new \DateTime,
'employeeCode' => 'JeanDupont',
]);