All pastes #1949620 Raw Edit

javascript addon

public php v1 · immutable
#1949620 ·published 2010-09-27 14:48 UTC
rendered paste body
function MyInlineJavaScript($action){    $action->inlineScript('alert("Here is an alert!")');    return true;} function MyJavaScriptFile($action){    $action->script('/path/to/myscript.js');    return true;}        Event::addHandler('EndShowScripts', 'MyInlineJavaScript');Event::addHandler('EndShowScripts', 'MyJavaScriptFile');