8 lines
249 B
PHP
8 lines
249 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$appointment_attendance_modes = array (
|
|
'offline' => 'ஆஃப்லைன்',
|
|
'online' => 'ஆன்லைனில்',
|
|
'mixed' => 'ஆஃப்லைன் மற்றும் ஆன்லைன்',
|
|
);
|