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.
30 lines
660 B
30 lines
660 B
7 months ago
|
<?php
|
||
|
|
||
|
use App\Libraries\AldLibrary;
|
||
|
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);
|
||
|
}
|
||
|
}
|