Backup and restore test cateogries - add file CourseCopyTestCategory.php

1.9.x
Hubert Borderiou 12 years ago
parent 86d47af40e
commit ebc232497f
  1. 48
      main/coursecopy/classes/CourseCopyTestCategory.php

@ -0,0 +1,48 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Exercises questions backup script
* @package chamilo.backup
*/
/**
* Code
*/
require_once 'Resource.class.php';
/**
* An QuizQuestion
* @author Hubert Borderiou <hubert.borderiou@grenet.fr>
* @package chamilo.backup
*/
class CourseCopyTestcategory extends Resource
{
/**
* The title
*/
var $title;
/**
* The description
*/
var $description;
/**
* Create a new TestCategory
* @param string $title
* @param string $description
*/
function CourseCopyTestcategory($id, $title, $description) {
parent::Resource($id, RESOURCE_TEST_CATEGORY);
$this->title = $title;
$this->description = $description;
}
/**
* Show the test_category title, used in the partial recycle_course.php form
*/
function show() {
parent::show();
echo $this->title;
}
}
Loading…
Cancel
Save