123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- class VChamiloPlugin extends Plugin
- {
-
- public function __construct()
- {
- parent::__construct('1.4', 'Valery Fremaux, Julio Montoya');
- }
-
- public static function create()
- {
- static $result = null;
- return $result ? $result : $result = new self();
- }
-
- public function get_name()
- {
- return 'vchamilo';
- }
- }
|