init uploader (v0.1) + go live spot feed

This commit is contained in:
2015-12-18 11:33:53 +01:00
parent 7e2cdb9861
commit cb8160e076
4 changed files with 36 additions and 5 deletions

View File

@@ -4,12 +4,17 @@ class Uploader extends UploadHandler
{
private $sBody;
function __construct($asOptions = null, $bInitialize = true, $asErrorMessages = null)
function __construct($asOptions = null, $bInitialize = false, $asErrorMessages = null)
{
parent::__construct($asOptions, $bInitialize, $asErrorMessages);
$this->sBody = '';
}
public function init()
{
$this->initialize();
}
protected function body($sText)
{
$this->sBody .= $sText;