Global Helper Functions
Global helper functions are built-in shortcuts that make your code cleaner and more readable. They cover common operations such as string formatting, URL handling, and request data access.
Table of Contents
- Global Helper Functions (Non-Namespaced)
Luminova built-in global functions are fewer helper utilities available throughout the application, designed to handle common tasks quickly and reduce repetitive code.
- Globally Defined Constants
Constants defines fixed values for application path, database return & result modes, and other application flags. Constants are immutable values set once and remain unchanged at runtime.
- Environment Configuration Variables and Formatting
The .env file centralizes configuration for Luminova, including custom and default variables, formatting rules, and controlling application behavior across development and production environments.
- Custom Global Functions & Constants
Custom global functions let developers define reusable helper functions to extend application behavior and reduce repeated code.
- Global Helper Functions (Namespaced)
Luminova namespaced helper functions provide reusable utilities for common tasks, offering structured access without polluting the global scope.