Public Member Functions | |
setId ($id) | |
Static Public Member Functions | |
static | get () |
static | post () |
static | files () |
static | cookie () |
static | session () |
static | attached () |
static | server () |
Public Attributes | |
const | GET = 1 |
const | POST = 2 |
const | FILES = 3 |
const | COOKIE = 4 |
const | SESSION = 5 |
const | ATTACHED = 6 |
const | SERVER = 7 |
Protected Attributes | |
$names | |
Static Private Member Functions | |
static | getInstance ($id) |
Definition at line 15 of file RequestType.class.php.
static RequestType::attached | ( | ) | [static] |
Definition at line 88 of file RequestType.class.php.
References getInstance().
static RequestType::cookie | ( | ) | [static] |
Definition at line 72 of file RequestType.class.php.
References getInstance().
static RequestType::files | ( | ) | [static] |
Definition at line 64 of file RequestType.class.php.
References getInstance().
static RequestType::get | ( | ) | [static] |
Definition at line 48 of file RequestType.class.php.
References getInstance().
Referenced by PrototypedEditor::__construct(), and BaseEditor::__construct().
static RequestType::getInstance | ( | $ | id | ) | [static, private] |
Definition at line 104 of file RequestType.class.php.
References IdentifiableObject::$id.
Referenced by attached(), cookie(), files(), get(), post(), server(), and session().
static RequestType::post | ( | ) | [static] |
Definition at line 56 of file RequestType.class.php.
References getInstance().
Referenced by ProxyController::__construct(), PrototypedEditor::__construct(), ControllersCollection::__construct(), and BaseEditor::__construct().
static RequestType::server | ( | ) | [static] |
Definition at line 96 of file RequestType.class.php.
References getInstance().
static RequestType::session | ( | ) | [static] |
Definition at line 80 of file RequestType.class.php.
References getInstance().
RequestType::setId | ( | $ | id | ) |
Reimplemented from Enumeration.
Definition at line 38 of file RequestType.class.php.
References IdentifiableObject::$id, and Assert::isNull().
RequestType::$names [protected] |
array( self::GET => 'get', self::POST => 'post', self::FILES => 'files', self::COOKIE => 'cookie', self::SESSION => 'session', self::ATTACHED => 'attached', self::SERVER => 'server' )
Reimplemented from Enumeration.
Definition at line 25 of file RequestType.class.php.
const RequestType::ATTACHED = 6 |
Definition at line 22 of file RequestType.class.php.
const RequestType::COOKIE = 4 |
Definition at line 20 of file RequestType.class.php.
const RequestType::FILES = 3 |
Definition at line 19 of file RequestType.class.php.
const RequestType::GET = 1 |
Definition at line 17 of file RequestType.class.php.
const RequestType::POST = 2 |
Definition at line 18 of file RequestType.class.php.
const RequestType::SERVER = 7 |
Definition at line 23 of file RequestType.class.php.
const RequestType::SESSION = 5 |
Definition at line 21 of file RequestType.class.php.