source: Dev/branches/rest-dojo-ui/server/rdfapi/util/Object.php @ 303

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

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 836 bytes
Line 
1<?php
2
3// ----------------------------------------------------------------------------------
4// Class: Object
5// ----------------------------------------------------------------------------------
6
7/**
8 * An abstract object.
9 * Root object with some general methods, that should be overloaded.
10 *
11 *
12 * @version  $Id: Object.php 295 2006-06-23 06:45:53Z tgauss $
13 * @author Chris Bizer <chris@bizer.de>
14 *
15 * @abstract
16 * @package utility
17 *
18 **/
19 class Object {
20
21  /**
22   * Serializes a object into a string
23   *
24   * @access    public
25   * @return    string         
26   */   
27        function toString() {
28        $objectvars = get_object_vars($this);
29                foreach($objectvars as $key => $value)
30                        $content .= $key ."='". $value. "'; ";
31                return "Instance of " . get_class($this) ."; Properties: ". $content;
32        }
33
34 }
35
36
37?>
Note: See TracBrowser for help on using the repository browser.