Last change
on this file since 53 was
45,
checked in by basvannuland, 14 years ago
|
new file structure. surveys/users/application DBs in data folder
|
File size:
638 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | // Survey class as intermediate for storing data from the site to the RDF database
|
---|
4 | require_once 'rdfConstants.php';
|
---|
5 |
|
---|
6 | // Include RAP Library to write RDF files
|
---|
7 | include(RDFAPI_INCLUDE_DIR . "RDFAPI.php");
|
---|
8 |
|
---|
9 |
|
---|
10 |
|
---|
11 | class SurveyAnswerDatabaseInterface
|
---|
12 | {
|
---|
13 | protected $surveyAnswerRDFWriter;
|
---|
14 | protected $surveyAnswerRDFReader;
|
---|
15 |
|
---|
16 |
|
---|
17 | public function __construct($surveyID,$userID)
|
---|
18 | {
|
---|
19 | $this->surveyAnswerRDFWriter = new SurveyAnswerRDFWriter($surveyUID,$userID);
|
---|
20 | $this->surveyAnswerRDFReader = new SurveyAnswerRDFReader($surveyUID);
|
---|
21 | }
|
---|
22 |
|
---|
23 | public function setSurveyAnswerInfo($surveyInfo)
|
---|
24 | {
|
---|
25 |
|
---|
26 | }
|
---|
27 | }
|
---|
28 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.