roundcubemail-plugins-kolab/plugins/loginfail/loginfail.php

24 lines
475 B
PHP
Raw Normal View History

<?php
class loginfail extends rcube_plugin
{
public $task = 'login';
function init()
{
$this->add_hook('login_failed', array($this, 'login_failed'));
}
public function login_failed($args)
{
$rcmail = rcube::get_instance();
$filename = $this->home . '/loginfail.html';
if (file_exists($filename)) {
$html = file_get_contents($filename);
$rcmail->output->add_footer($html);
}
}
}