Download Jadwal Salur

This commit is contained in:
Pusdatin BPKD Jkt
2022-08-04 16:04:00 +07:00
parent 009a3e913e
commit d981418604
16 changed files with 372 additions and 79 deletions
+12
View File
@@ -116,4 +116,16 @@ function getRole()
$role = $role[0];
return $role;
}
function getAlphabetCell($idx)
{
$alphabet = range("A","Z");
if ($idx > 25)
{
$idx -= 26;
return $alphabet[round($idx/25)].= getAlphabetCell($idx);
}else{
return $alphabet[$idx];
}
}