2017 © Pedro Peláez
 

project f3-modular

image

anandpilania/f3-modular

  • Friday, March 2, 2018
  • by AnandPilania
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

"# F3Module", (*1)

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

The Versions