Go to the documentation of this file.00001 <?php
00002 if(!defined('__PRAGYAN_CMS'))
00003 {
00004 header($_SERVER['SERVER_PROTOCOL'].' 403 Forbidden');
00005 echo "<h1>403 Forbidden<h1><h4>You are not authorized to access the page.</h4>";
00006 echo '<hr/>'.$_SERVER['SERVER_SIGNATURE'];
00007 exit(1);
00008 }
00009
00010 interface IQuiz {
00011 public function __construct($quizId);
00012
00013 public function getPropertiesForm($dataSource);
00014 public function submitPropertiesForm();
00015
00016 public function getFrontPage($userId);
00017
00018 public function getQuizPage($userId);
00019 public function submitQuizPage($userId);
00020
00021 public function initQuiz($userId);
00022
00023 public function deleteEntries($userId);
00024 }