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.
36 lines
685 B
36 lines
685 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Create Skype user field
|
|
*
|
|
* @author Imanol Losada Oriol <imanol.losada@beeznest.com>
|
|
* @package chamilo.plugin.skype
|
|
*/
|
|
class Skype extends Plugin
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
protected function __construct()
|
|
{
|
|
parent::__construct(
|
|
'0.2',
|
|
'Imanol Losada Oriol',
|
|
[$this->get_lang('ReadTheReadmeFile') => 'html']
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Instance the plugin
|
|
* @staticvar null $result
|
|
* @return Skype
|
|
*/
|
|
static function create()
|
|
{
|
|
static $result = null;
|
|
|
|
return $result ? $result : $result = new self();
|
|
}
|
|
}
|
|
|