2017 © Pedro Peláez
 

library phpopenfw

A Forked repo created by Chris Clark of phpOpenFW Framework

image

codifyllc/phpopenfw

A Forked repo created by Chris Clark of phpOpenFW Framework

  • Monday, March 28, 2016
  • by lhoezee
  • Repository
  • 1 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

-----------------------------------------------------------------------------------------------------------

# phpOpenFW


phpOpenFW is an open source MVC PHP web development framework released under the GNU Public License (GPL) version 2., (*1)


## Author

Christian J. Clark, (*2)


## Website

http://www.emonlade.net/phpopenfw/, (*3)


## License

GNU Public License (GPL) version 2 ( http://www.gnu.org/licenses/gpl-2.0.txt ), (*4)


## Version

1.3.0, (*5)


## Requirements

phpOpenFW requires PHP >= 5.3, libxslt, libxml, php-xsl, and php-xml., (*6)


## Support

Contact support@emonlade.net for comments questions, or concerns., (*7)


## Features

phpOpenFW has an abundance of features that facilitate the development of powerful, flexible web sites and web applications. Below is an outline of the features offered by phpOpenFW., (*8)

Framework Facilities

  • Form Engine
  • Database Abstraction Class
  • Active Record Class
  • XML Element Class (abstract)
  • Recordset List to Table Class
  • Generic XHTML Table Class
  • Plugin Facility

Application Facilities

  • Built-in Authentication services
  • Module list / Navigation Facility

Plugins

  • XML Transformation (using XSL)
  • Quick Database Actions
  • Date/Time Functions
  • Code Benchmark

## Apache Mod_Rewrite Rules

When using the nav_xml_format of "rewrite", you need to have to following apache mod_rewrite rules in place for the application navigation to work correctly. You can tweak the rules to suit you application, but there needs to be a catch-all rule that forward all pages through the applications main index.php script. Also, the pass-through for the CSS, images, and Javascript is important as well., (*9)

Example:

RewriteEngine On RewriteRule ^([^/.]+).html$ index.php?page=$1 [L] RewriteRule ^(themes|css|img|javascript) - [L] RewriteRule .favicon.ico$ - [L] RewriteRule ^.$ index.php [L,qsa], (*10)

If you are using Virtual Document Roots with Apache your rules will most likely need to look something like this:, (*11)

RewriteEngine On RewriteBase / RewriteRule ^([^/.]+).html$ index.php?page=$1 [L] RewriteRule ^(themes|css|img|javascript) - [L] RewriteRule .favicon.ico$ - [L] RewriteRule ^.$ index.php [L,qsa], (*12)

The Versions

28/03 2016

dev-master

9999999-dev

A Forked repo created by Chris Clark of phpOpenFW Framework

  Sources   Download

The Requires

  • php >=5.3.0

 

16/03 2016

dev-fix-xml_escape_array

dev-fix-xml_escape_array

  Sources   Download

14/01 2016

1.3.0

1.3.0.0

  Sources   Download

16/09 2014

dev-set_charset-support

dev-set_charset-support

  Sources   Download

28/08 2014

1.2.3

1.2.3.0

  Sources   Download

09/02 2014

1.2.2

1.2.2.0

  Sources   Download