12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Glossary backup script
- * @package chamilo.backup
- */
- /**
- * Code
- */
- require_once 'Resource.class.php';
- /**
- * Add resource glossary
- * @author Isaac flores
- * @package chamilo.backup
- */
- class Glossary extends Resource
- {
- public $glossary_id;
- public $name;
- public $description;
- public $display_order;
- /**
- * Create a new Glossary
- * @param int $id
- * @param string $name
- * @param string $description
- * @param int $display_order
- */
- function Glossary($id,$name,$description,$display_order)
- {
- parent::Resource($id,RESOURCE_GLOSSARY);
- $this->glossary_id = $id;
- $this->name = $name;
- $this->description = $description;
- $this->display_order = $display_order;
- }
- /**
- * Show this glossary
- */
- function show() {
- parent::show();
- echo $this->name;
- }
- }
- ?>
|