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.
37 lines
679 B
37 lines
679 B
|
13 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
/**
|
||
|
|
* Work/Assignment/Student publication backup script
|
||
|
|
* @package chamilo.backup
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* Code
|
||
|
|
*/
|
||
|
|
require_once 'Resource.class.php';
|
||
|
|
/**
|
||
|
|
* An event
|
||
|
|
* @author Yannick Warnier <yannick.warnier@beeznest.com>
|
||
|
|
* @package chamilo.backup
|
||
|
|
*/
|
||
|
|
class Work extends Resource
|
||
|
|
{
|
||
|
|
public $params = array();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new Work
|
||
|
|
*
|
||
|
|
* @param array parameters
|
||
|
|
*/
|
||
|
|
public function __construct($params)
|
||
|
|
{
|
||
|
|
parent::Resource($params['id'], RESOURCE_WORK);
|
||
|
|
$this->params = $params;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function show()
|
||
|
|
{
|
||
|
|
parent::show();
|
||
|
|
echo $this->params['title'];
|
||
|
|
}
|
||
|
|
}
|