Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
755ea8ce
Commit
755ea8ce
authored
Jan 17, 2016
by
Carsten Rose
Browse files
Store.php: docs enhanced.
parent
77eba1a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
qfq/store/Store.php
View file @
755ea8ce
...
...
@@ -29,12 +29,40 @@ require_once(__DIR__ . '/../../qfq/Database.php');
class
Store
{
/**
* @var Store Instance of class Store. There should only be one class 'Store' at a time.
*/
private
static
$instance
=
null
;
/**
* @var Sip Instance of class SIP
*/
private
static
$sip
=
null
;
/**
* @var array Stores all indiviudal stores with the variable raw values
*
* $raw['D']['id'] = 0 - Defaultvalues from Tabledefinition
* ...
* $raw['S']['r'] = 1234 - record ID from current SIP identifier
* ...
* $raw['C']['HTTP_SERVER'] = 'qfq' - Servername
* $raw['C']['s'] = 'badcaffee1234' - recent SIP
*/
private
static
$raw
=
array
();
/**
* @var array Default sanatize classes.
*/
private
static
$sanatizeClass
=
array
();
/**
* $sanatizeClass['S'] = false
* $sanatizeClass['C'] = true
* ...
*
* @var array each entry with true/false - depending if store needs to be sanatized.
*/
private
static
$sanatizeStore
=
array
();
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment