generic_functions.php
Table of Contents
- _T() : string
 - Translate text
 - printr() : void
 - like print_r() print an variable or an complex object on browser
 - vardump() : void
 - like var_dump() print an variable or an complex object on browser
 
Functions
_T()
Translate text
    
                    _T(string $text) : string
    
        Parameters
- $text : string
 - 
                    
text to translate
 
Tags
Return values
string —translated text
printr()
like print_r() print an variable or an complex object on browser
    
                    printr(mixed $var) : void
    
        Parameters
- $var : mixed
 - 
                    
the variable or object to display
 
Tags
Return values
void —vardump()
like var_dump() print an variable or an complex object on browser
    
                    vardump(mixed $var) : void
    
        Parameters
- $var : mixed
 - 
                    
the variable or object to display