source: Dev/branches/rest-dojo-ui/server/classes/master.php @ 303

Last change on this file since 303 was 303, checked in by hendrikvanantwerpen, 13 years ago

[Server] Refactored model classes with some meta-programming. Specific classes only define their fields and inherit from class RdfObject?. Changes to handle the new model objects correctly.
[Client] Added rft/store module for uniform resource access. Removed dependencies on 'uid' field name. Added support for references without loading full object nor exposing uri.
[Client] Added reset() to QuestionWidget?.
[RDFAPI] Fixed PHP warning.

File size: 260 bytes
Line 
1<?php
2
3/**
4 * Description of master
5 *
6 * For autoloading of classes for example.
7 *
8 * @author fpvanagthoven
9 */
10
11function __autoload($class_name) {
12        if (file_exists('classes/' . $class_name . '.php'))
13                require_once 'classes/' . $class_name . '.php';
14}
15
16?>
Note: See TracBrowser for help on using the repository browser.