Last change
on this file since 289 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:
642 bytes
|
Line | |
---|
1 | <?php
|
---|
2 | // ----------------------------------------------------------------------------------
|
---|
3 | // Class: ResProperty
|
---|
4 | // ----------------------------------------------------------------------------------
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * An RDF Property.
|
---|
8 | *
|
---|
9 | *
|
---|
10 | * @version $Id: ResProperty.php 320 2006-11-21 09:38:51Z tgauss $
|
---|
11 | * @author Daniel Westphal <mail at d-westphal dot de>
|
---|
12 | *
|
---|
13 | *
|
---|
14 | * @package resModel
|
---|
15 | * @access public
|
---|
16 | **/
|
---|
17 | class ResProperty extends ResResource
|
---|
18 | {
|
---|
19 |
|
---|
20 | /**
|
---|
21 | * Constructor
|
---|
22 | * You can supply a URI
|
---|
23 | *
|
---|
24 | * @param string $uri
|
---|
25 | * @access public
|
---|
26 | */
|
---|
27 | function ResProperty($uri)
|
---|
28 | {
|
---|
29 | parent::ResResource($uri);
|
---|
30 | }
|
---|
31 | }
|
---|
32 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.