Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anandpilania/f3-modular

F3 Playground (DEV)
https://github.com/anandpilania/f3-modular

f3 f3-boilerplate fatfree fatfree-framework skeleton-application

Last synced: about 2 months ago
JSON representation

F3 Playground (DEV)

Awesome Lists containing this project

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) {