questions = $questions;
$this->loadQuestionsToJavascript();
$this->javascript();
$this->displayList();
$this->displayEditPanel();
}
/**
* Loads the questions that PHP retrieved from database
* into javascript. This is done so that the page does not need
* to refresh in order to load an entire question in to the form.
*/
private function loadQuestionsToJavascript()
{
}
private function javascript() {
?>
displayForm(); ?>
questions as $question) {
$category = $question->category;
array_push($categories, $category);
}
$categories = array_unique($categories);
// You might want to escape quotes and stuff here
foreach ($categories as $category) {
?>
questions = $this->sortByCategory($this->questions);
$currentCategory = null;
foreach ($this->questions as $question) {
if (is_null($currentCategory)) {
?> category;
?> category == $q2->category) {
if($q1->code < $q2->code)
return -1;
else
return 1;
}
return ($q1->category < $q2->category) ? -1 : 1;
}
?>