DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

API

This section describes the usage of pluploadfe within your own extensions.

Please take a look at EXT:mailfiles as long as this section is in work.

Example Code

public function renderPlupload() {
    t3lib_div::requireOnce(t3lib_extMgm::extPath('pluploadfe', 'pi1/class.tx_pluploadfe_pi1.php'));
    $this->pluploadfe = t3lib_div::makeInstance('tx_pluploadfe_pi1');
    $this->pluploadfe->cObj = $this->cObj;

    $this->pluploadfeConf['configUid'] = 123;
    $this->pluploadfeConf['uid'] = "my_plupload";

    return $this->pluploadfe->main("", $this->pluploadfeConf);
}