snappymail/plugins/video-on-login-screen/index.php
RainLoop Team 67c5e31e58 Added a new theme (Rain Drops)
Added a "video-on-login-screen" plugin
Added a few branding settings
2015-02-01 03:42:48 +04:00

38 lines
1,019 B
PHP

<?php
class VideoOnLoginScreenPlugin extends \RainLoop\Plugins\AbstractPlugin
{
/**
* @return void
*/
public function Init()
{
$this->addJs('js/vide/jquery.vide.js');
$this->addJs('js/video-on-login.js');
}
/**
* @return array
*/
public function configMapping()
{
return array(
\RainLoop\Plugins\Property::NewInstance('mp4_file')->SetLabel('Url to a mp4 file')
->SetPlaceholder('http://')
->SetAllowedInJs(true)
->SetDefaultValue(''),
\RainLoop\Plugins\Property::NewInstance('webm_file')->SetLabel('Url to a webm file')
->SetPlaceholder('http://')
->SetAllowedInJs(true)
->SetDefaultValue(''),
\RainLoop\Plugins\Property::NewInstance('ogv_file')->SetLabel('Url to a ogv file')
->SetPlaceholder('http://')
->SetAllowedInJs(true)
->SetDefaultValue(''),
\RainLoop\Plugins\Property::NewInstance('muted')->SetLabel('Muted')
->SetType(\RainLoop\Enumerations\PluginPropertyType::BOOL)
->SetAllowedInJs(true)
->SetDefaultValue(true),
);
}
}