returning content of onXXX tag after adding code

This commit is contained in:
Ralf Becker 2010-06-13 07:44:53 +00:00
parent f54410da4f
commit d4e5476304

View File

@ -928,30 +928,33 @@ abstract class egw_framework
* Sets an onLoad action for a page
*
* @param string javascript to be used
* @return string content of onXXX tag after adding code
*/
static function set_onload($code)
{
self::$body_tags['onLoad'] .= $code;
return self::$body_tags['onLoad'] .= $code;
}
/**
* Sets an onUnload action for a page
*
* @param string javascript to be used
* @return string content of onXXX tag after adding code
*/
static function set_onunload($code)
{
self::$body_tags['onUnload'] .= $code;
return self::$body_tags['onUnload'] .= $code;
}
/**
* Sets an onResize action for a page
*
* @param string javascript to be used
* @return string content of onXXX tag after adding code
*/
static function set_onresize($code)
{
self::$body_tags['onResize'] .= $code;
return self::$body_tags['onResize'] .= $code;
}
/**