Luminova Framework

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

  1. 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.

  2. 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.

  3. 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.

  4. Custom Global Functions & Constants

    Custom global functions let developers define reusable helper functions to extend application behavior and reduce repeated code.

  5. Global Helper Functions (Namespaced)

    Luminova namespaced helper functions provide reusable utilities for common tasks, offering structured access without polluting the global scope.