12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Class Mobidico.
- */
- class Mobidico extends Plugin
- {
- public $isCoursePlugin = true;
- // When creating a new course this settings are added to the course
- public $course_settings = [];
- /**
- * Constructor.
- */
- protected function __construct()
- {
- parent::__construct(
- 'O.1',
- 'Julio Montoya',
- [
- 'tool_enable' => 'boolean',
- 'api_key' => 'text',
- 'mobidico_url' => 'text',
- ]
- );
- }
- /**
- * @return Mobidico|null
- */
- public static function create()
- {
- static $result = null;
- return $result ? $result : $result = new self();
- }
- /**
- * Install.
- */
- public function install()
- {
- }
- /**
- * Uninstall.
- */
- public function uninstall()
- {
- }
- }
|