Application Helpers
Available Methods
Method Listing
app_installed()
The app_installed
method will return a boolean value based on if FusionCMS has been installed or not.
$installed = app_installed()
// true
app_codename()
The app_codename
method returns the randomly generated site codename prefixed with the secret key.
$codename = app_codename()
// uxorious-particle-aaaabbbbccccddddeeeeffffgggghhhh
app_memory_usage()
The app_memory_usage
method returns the memory usage in a human readable format.
$usage = app_memory_usage()
// 2mb
app_loading_time()
The app_loading_time
method returns the total loading time of the page request in a human readable format.
$time = app_loading_time()
// 0.08s