PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Nemeth Zoltan   RS framework   README.md   Download  
File: README.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: RS framework
Web application development framework
Author: By
Last change: Update of README.md
Date: 1 year ago
Size: 813 bytes
 

Contents

Class file image Download

RS Framework 2

Framework version: 0.6

PHP Version: 5.6

Programable PHP framework for fast, flexible and simple projects.

The framework contains a basic sample with a basic user handling and the neccessary logging features with observer pattern.


$request = Request::getInstance();
$cache = SessionCache::getInstance();
$router = Router::getInstance();
$router->process($request);
/
 * RS framework processing functionality
 */
/
 * Generate view for data
 */
$object = $router->getTemplate();
$view = $object::getInstance();
/
 * Run process files
 */
$processes = $router->getProcess();
if (count($processes) > 0) {
	foreach ($processes as $process) {
		if (is_executable('process/' . $process)) {
			include_once 'process/' . $process;
		}
	}
}
/
 * Make view
 */
$view->show();