modulework / viewwork
A simple way of handling view files
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:modulework-module
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-01-27 16:51:36 UTC
README
A simple way of handling view files
Installation:
- Place the view.php file into your application folder
- Include it
include_once 'view.php';
HowTo
In order to interact with a view simply build a view object like this:
View::make('name');
This will throw an exception if the file does not exists.
Explanation is cooming soon!
You can always have a look at the PHP doc for a brief explanation.