adding themes system

This commit is contained in:
Ibnu Maksum
2023-10-12 16:15:50 +07:00
parent a1d9b63dcf
commit 747e28e07c
6 changed files with 56 additions and 5 deletions

View File

@ -81,4 +81,9 @@ class Lang
return $_notifmsg_default[$key];
}
}
public static function ucWords($text)
{
return ucwords(str_replace('_', ' ', $text));
}
}