1. Go to this page and download the library: Download macellan/iys 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/ */
enum ConsentSourceTypes: string
{
case PHYSICAL = 'HS_FIZIKSEL_ORTAM';
case WET_SIGNATURE = 'HS_ISLAK_IMZA';
case WEB = 'HS_WEB';
case CALL_CENTER = 'HS_CAGRI_MERKEZI';
case SOCIAL_MEDIA = 'HS_SOSYAL_MEDYA';
case EMAIL = 'HS_EPOSTA';
case MESSAGE = 'HS_MESAJ';
case MOBILE = 'HS_MOBIL';
case HS_EORTAM = 'HS_EORTAM';
case ACTIVITY = 'HS_ETKINLIK';
case HS_2015 = 'HS_2015';
case HS_ATM = 'HS_ATM';
case HS_DECISION = 'HS_KARAR';
}
enum PermissionTypes: string
{
case CALL = 'ARAMA';
case MESSAGE = 'MESAJ';
case EMAIL = 'EPOSTA';
}
enum RecipientTypes: string
{
case INDIVIDUAL = 'BIREYSEL';
case TRADER = 'TACIR';
}
enum SourceTypes: string
{
case HS = 'HS';
case IYS = 'IYS';
}
enum StatusTypes: string
{
case APPROVE = 'ONAY';
case REJECT = 'RET';
}