mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
add class variables $filenames, $header, $extraheader
This commit is contained in:
parent
a6d67be34e
commit
07d9047b2e
|
@ -45,6 +45,18 @@ class SeedDMS_Download_Mgr {
|
|||
*/
|
||||
protected $extracols;
|
||||
|
||||
/**
|
||||
* @var array $header list of entries in header (first line)
|
||||
* @access protected
|
||||
*/
|
||||
protected $header;
|
||||
|
||||
/**
|
||||
* @var array $extraheader list of extra entries in header
|
||||
* @access protected
|
||||
*/
|
||||
protected $extraheader;
|
||||
|
||||
/**
|
||||
* @var array $rawcontents list of content used instead of document content
|
||||
* @access protected
|
||||
|
@ -55,7 +67,7 @@ class SeedDMS_Download_Mgr {
|
|||
* @var array $filenames filename used in archive
|
||||
* @access protected
|
||||
*/
|
||||
protected $filnames;
|
||||
protected $filenames;
|
||||
|
||||
function __construct($tmpdir = '') {
|
||||
$this->tmpdir = $tmpdir;
|
||||
|
@ -64,6 +76,7 @@ class SeedDMS_Download_Mgr {
|
|||
$this->extracols = array();
|
||||
$this->rawcontents = array();
|
||||
$this->extraheader = array();
|
||||
$this->filenames = array();
|
||||
}
|
||||
|
||||
public function addHeader($extraheader) { /* {{{ */
|
||||
|
|
Loading…
Reference in New Issue
Block a user