Allows to render custom content in the back-end footer.
public function subscribeEvents()
{
Backend::$events->addEvent('backend:onExtendFooter', $this, 'backend_extend_footer');
}
public function backend_extend_footer($controller)
{
$controller->renderPartial(PATH_APP.'/mymodule/partials/_footer.htm')
}