Plugin Method addToPageFoot()

public function addToPageFoot() {
    
    //...your PHP code...//
}

Summary

You can use this method to add HTML to the bottom of the page.

Where You Can Use It

In your pluggable modules, from Zenario 7.0 onwards.

Description

This method allows you to output HTML to the bottom of a page, e.g. to add some JavaScript code.

Depending on how you use this, your plugin might not work with AJAX reloads. It would be better to run JavaScript by writing a function in your plugin.js file and calling it using the $this->callScript() function.

Return Value

No return value is needed.