Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/anandpilania/f3-modular
- Owner: AnandPilania
- Created: 2018-03-02T05:55:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T10:19:26.000Z (about 5 years ago)
- Last Synced: 2024-04-27T03:43:15.178Z (9 months ago)
- Topics: f3, f3-boilerplate, fatfree, fatfree-framework, skeleton-application
- Language: PHP
- Homepage:
- Size: 452 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) {