You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
572 B
31 lines
572 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once 'Resource.class.php';
|
|
|
|
/**
|
|
* Class GradeBookBackup
|
|
*/
|
|
class GradeBookBackup extends Coursecopy\Resource
|
|
{
|
|
public $categories;
|
|
|
|
/**
|
|
* GradeBookBackup constructor.
|
|
* @param array $categories
|
|
*/
|
|
public function __construct($categories)
|
|
{
|
|
parent::__construct(uniqid(), RESOURCE_GRADEBOOK);
|
|
$this->categories = $categories;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function show()
|
|
{
|
|
parent::show();
|
|
echo get_lang('All');
|
|
}
|
|
}
|
|
|