gino CMS
2.5.0
gino è un CMS scritto in PHP che offre tutti gli strumenti necessari per poter creare un sito web e gestire i contenuti al suo interno in maniera semplice ed efficace, svincolando l'amministratore da conoscenze tecniche di programmazione
|
Wrapper di una richiesta HTTP. More...
Public Member Functions | |
updateUrl () | |
Calcola l'url nella forma espansa a partire dai parametri GET Quando viene effettuato url rewriting da parte di Gino.Router viene chimato questo metodo per calcolare l'url non espanso utilizzando la proprietà GET che è stata opportunamente modificata. More... | |
isSecure () | |
Connessione sicura https. More... | |
checkGETKey ($key, $value) | |
Controlla se la chiave key di GET ha valore value. More... | |
checkPOSTKey ($key, $value) | |
Controlla se la chiave key di POST ha valore value. More... | |
Public Member Functions inherited from Singleton | |
__clone () | |
I Singleton non possono essere clonati. More... | |
__sleep () | |
I Singleton non possono essere serializzati. More... | |
__wakeup () | |
I Singleton non possono essere serializzati. More... | |
Data Fields | |
$GET | |
$POST | |
$REQUEST | |
$COOKIES | |
$FILES | |
$META | |
$method | |
$path | |
$url | |
$request_uri | |
$query_string | |
$absolute_url | |
$root_absolute_url | |
$session | |
$user = null | |
Protected Member Functions | |
__construct () | |
Costruttore Il costruttore è protetto in modo da garantire il pattern Singleton. More... | |
Protected Member Functions inherited from Singleton | |
__construct () | |
Costruttore Il costruttore è definito come metodo protetto in modo che classi client non possano ottenere nuove istanze di una class Gino.Singleton attraverso di esso. More... | |
Private Member Functions | |
valueOrNull (array $array, $key) | |
Valore associato alla chiave data di un array o null. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from Singleton | |
static | instance () |
Metodo per recuperare istanze Singleton. More... | |
static | instance_to_class ($main_class) |
Metodo per recuperare istanze Singleton rispetto alla classe fornita. More... | |
Static Protected Attributes inherited from Singleton | |
static | $_instances = array() |
Wrapper di una richiesta HTTP.
Contiene tutte le informazioni importanti di una richiesta HTTP. La classe è un singleton quindi tutte le classi che la utilizzano si scambiano la stessa istanza. Le proprietà sono pubbliche e aperte in lettura e scrittura.
|
protected |
Costruttore Il costruttore è protetto in modo da garantire il pattern Singleton.
checkGETKey | ( | $key, | |
$value | |||
) |
Controlla se la chiave key di GET ha valore value.
string | $key | chiave |
mixed | $value | valore |
checkPOSTKey | ( | $key, | |
$value | |||
) |
Controlla se la chiave key di POST ha valore value.
string | $key | chiave |
mixed | $value | valore |
isSecure | ( | ) |
Connessione sicura https.
updateUrl | ( | ) |
Calcola l'url nella forma espansa a partire dai parametri GET Quando viene effettuato url rewriting da parte di Gino.Router viene chimato questo metodo per calcolare l'url non espanso utilizzando la proprietà GET che è stata opportunamente modificata.
L'url parte dalla site root senza / iniziale, es. index.php?evt[page-view]&id=test
|
private |
Valore associato alla chiave data di un array o null.
array | $array | |
string | $key |
$absolute_url |
$COOKIES |
$FILES |
$GET |
$META |
$method |
$path |
$POST |
$query_string |
$REQUEST |
$request_uri |
$root_absolute_url |
$session |
$url |
$user = null |