This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
nemubot-askweb/QuestionsFile.class.php
Némunaire 48a77a0d10 Fix simples errors in the two classes
JavaScript now generates inputs with a unique name
Add todo in questions.php and manage multiple answers; start using Question class
2012-05-22 03:34:24 +02:00

71 lines
1.5 KiB
PHP

<?php
require_once("Question.class.php");
class QuestionsFile
{
private $filename;
private $treeXML;
public function __construct($filename)
{
$this->filename = $filename;
$this->reload();
}
/**
* Load or reload the questions file.
* Unsave changes will be erased.
*/
private function reload()
{
$this->treeXML = new DOMDocument('1.0', 'UTF-8');
$this->treeXML->formatOutput = true;
if (isfile($this->filename))
{
$this->treeXML->load($this->filename);
$root_nodes = $this->treeXML->getElementsByTagName("questions");
if ($root_node->length > 0)
$this->root_node = $root_nodes->item(0);
else
throw Exception("Not a valid nemubot QuestionsFile.");
}
else
{
$this->root_node = $this->treeXML->createElement("questions");
$this->treeXML->appendChild($this->root_node);
}
}
/**
* Add a new question into the file
* @param $question The question object
*/
public function add_question($question)
{
$this->root_node->appendChild($question->to_xml($this->root_node));
}
/**
* Get a question from its unique identifiant
*/
public function get_question($id)
{
return new Question($this->root_node->getElementById($id));
}
/**
* Write changes into the real file
*/
public function save($newfilename = null)
{
if (!empty($newfilename))
$this->filename = $newfilename;
$this->treeXML->save($this->filename);
}
}
?>