You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
<?php |
|
|
|
use App\Libraries\AldLibrary; |
|
use SebastianBergmann\Type\ObjectType; |
|
|
|
if (!function_exists('currentMonth')) { |
|
function currentMonth() |
|
{ |
|
$Ald = new AldLibrary; |
|
$username = session('nip'); |
|
return $Ald->encryptMe(date('m'), $username); |
|
} |
|
} |
|
|
|
if (!function_exists('currentYear')) { |
|
function currentYear() |
|
{ |
|
$Ald = new AldLibrary; |
|
$username = session('nip'); |
|
return $Ald->encryptMe(date('Y'), $username); |
|
} |
|
} |
|
|
|
if (!function_exists('encryptData')) { |
|
function encryptData($text) |
|
{ |
|
$Ald = new AldLibrary; |
|
$username = session('nip'); |
|
return $Ald->encryptMe($text, $username); |
|
} |
|
} |
|
|
|
if (!function_exists('getSession')) { |
|
function getSession() |
|
{ |
|
$session = session(); |
|
return json_encode($session->get()); |
|
} |
|
} |
|
|
|
if (!function_exists('currentPegawai')) { |
|
function currentPegawai(): object |
|
{ |
|
$db = \Config\Database::connect(); |
|
$ret = $db->table('PEGAWAI')->where('NIP9', session('nip'))->get()->getFirstRow(); |
|
return $ret; |
|
} |
|
}
|
|
|