|
|
|
@ -33,8 +33,6 @@ tts_framework/src |
|
|
|
│ │ ├── help_load.php (fetch_lazy Generator) |
|
|
|
│ │ ├── help_load.php (fetch_lazy Generator) |
|
|
|
│ │ ├── help_save.php (Model used to save into DB) |
|
|
|
│ │ ├── help_save.php (Model used to save into DB) |
|
|
|
│ │ ├── paginate.php (PDO DB query to create links) |
|
|
|
│ │ ├── paginate.php (PDO DB query to create links) |
|
|
|
│ │ ├── run_sql.php (trait for sqlite/MySQL/PG helper to get fields/tables) |
|
|
|
|
|
|
|
│ │ └── validation.php (trait to validate mysql fields) |
|
|
|
|
|
|
|
│ ├── enum |
|
|
|
│ ├── enum |
|
|
|
│ │ ├── app_environment.php (fetch if is_production environment) |
|
|
|
│ │ ├── app_environment.php (fetch if is_production environment) |
|
|
|
│ │ └── same_site.php (same_site: Lax, Strict, None) |
|
|
|
│ │ └── same_site.php (same_site: Lax, Strict, None) |
|
|
|
@ -77,8 +75,12 @@ tts_framework/src |
|
|
|
│ ├── time_zone_selection.php (Builds HTML to Pick your Time Zone from Select Box) |
|
|
|
│ ├── time_zone_selection.php (Builds HTML to Pick your Time Zone from Select Box) |
|
|
|
│ ├── time_zones.php (Convert UTC into Users TimeZone) |
|
|
|
│ ├── time_zones.php (Convert UTC into Users TimeZone) |
|
|
|
│ ├── traits |
|
|
|
│ ├── traits |
|
|
|
│ │ ├── csrf_token_functions.php (Get an Cross-Site Request Forge - Prevention Token) |
|
|
|
│ │ ├── database |
|
|
|
│ │ └── session_hijacking_functions.php (Prevent SESSION Hijacking and Fixation in PHP) |
|
|
|
│ │ │ ├── run_sql.php (sqlite/MySQL/PG Helper to get fields/tables) |
|
|
|
|
|
|
|
│ │ │ └── validation.php (Validate mysql fields) |
|
|
|
|
|
|
|
│ │ └── security |
|
|
|
|
|
|
|
│ │ ├── csrf_token_functions.php (Get an Cross-Site Request Forge - Prevention Token) |
|
|
|
|
|
|
|
│ │ └── session_hijacking_functions.php (Prevent SESSION Hijacking and Fixation in PHP) |
|
|
|
│ ├── url_encode.php (base64url Encode/Decode) |
|
|
|
│ ├── url_encode.php (base64url Encode/Decode) |
|
|
|
│ └── view.php (Loads view files from common folders you defined) |
|
|
|
│ └── view.php (Loads view files from common folders you defined) |
|
|
|
├── main.inc.php (Bootstraps App, sets configure, registry, di, and name-spaces) |
|
|
|
├── main.inc.php (Bootstraps App, sets configure, registry, di, and name-spaces) |
|
|
|
|