1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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()
- {
- }
- }
|