anandpilania / f3-modular
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Type:project
Requires
- anandpilania/f3-validator: ^1.1
- bcosca/fatfree-core: ^3.6
- firebase/php-jwt: ^5.0
- ikkez/f3-assets: ^1.1
- ikkez/f3-cortex: ^1.5
- ikkez/f3-events: dev-master
- ikkez/f3-fal: ^0.7.2
- ikkez/f3-flash: ^1.0
- ikkez/f3-mailer: ^1.0
- ikkez/f3-middleware: ^1.1
- ikkez/f3-opauth: dev-master
- ikkez/f3-pagination: ^1.4
- rafamds/f3-falsum: ^2.6
- xfra35/f3-access: ^1.0
- xfra35/f3-cron: ^1.2
- xfra35/f3-multilang: ^1.2
This package is auto-updated.
Last update: 2024-11-06 21:06:16 UTC
README
"# F3Module"
KNOWN ISSUES
1: Rendering modules views:
This issue can be resolved by modifying `Preview->render` as below:
if(is_file($view = $f3->fixslashes($dir.$file))) // REPLACE THIS WITH
$_f = $fw->fixslashes($dir.$file);
$_fr = str_ireplace('./', '', $_f);
$view = (is_file($_f) ? $_f : (is_file($_fr) ? $_fr : null));
if ($view) {