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
|
Public Member Functions | |
__construct () | |
Costruttore. More... | |
Static Public Member Functions | |
static | label ($name, $text, $required) |
TAG LABEL. More... | |
static | noinput ($label, $value) |
Simula un campo ma senza input. More... | |
static | hidden ($name, $value, $options=array()) |
Input hidden. More... | |
static | input ($name, $type, $value, $options=array()) |
Input tag. More... | |
static | input_label ($name, $type, $value, $label, $options=array()) |
Input con label. More... | |
static | input_date ($name, $value, $label, $options=array()) |
Input di tipo data con label. More... | |
static | textarea_label ($name, $value, $label, $options=array()) |
Textarea con label. More... | |
static | textarea ($name, $value, $options=array()) |
Textarea. More... | |
static | jsCountCharText () |
Funzione javascript che conta il numero dei caratteri ancora disponibili all'interno di un textarea. More... | |
static | editorHtml ($name, $value, $options=array()) |
Inizializza l'editor visuale CKEditor. More... | |
static | checkbox_label ($name, $checked, $value, $label, $options=array()) |
Input checkbox con label. More... | |
static | checkbox ($name, $checked, $value, $options=array()) |
Input checkbox. More... | |
static | input_file ($name, $value, $label, $options=array()) |
Input file con label Integra il checkbox di eliminazione del file e non è gestita l'obbligatorietà del campo. More... | |
static | multipleCheckbox ($name, $checked, $data, $label, $options=array()) |
Iput checkbox multiplo (many to many) con label. More... | |
static | radio_label ($name, $value, $data, $default, $label, $options=array()) |
Input radio con label. More... | |
static | radio ($name, $value, $data, $default, $options=array()) |
Input radio. More... | |
static | select_label ($name, $value, $data, $label, $options=array()) |
Input select con label. More... | |
static | select ($name, $selected, $data, $options=array()) |
Input select. More... | |
Static Private Member Functions | |
static | imagePreviewer () |
Codice per la visualizzazione allegati contestualmente all'editor CKEDITOR. More... | |
static | isImage ($path) |
Controlla che il path sia di un'immagine. More... | |
Input form.
__construct | ( | ) |
Costruttore.
|
static |
Input checkbox.
string | $name | nome input |
boolean | $checked | valore selezionato |
mixed | $value | valore del tag input |
array | $options | array associativo di opzioni
|
|
static |
Input checkbox con label.
string | $name | nome input |
boolean | $checked | valore selezionato |
mixed | $value | valore del tag input |
string | $label | testo <label> |
array | $options | array associativo di opzioni opzioni del metodo checkbox() opzioni specifiche
|
|
static |
Inizializza l'editor visuale CKEditor.
string | $name | |
string | $value | |
array | $options | array associativo di opzioni
|
|
static |
Input hidden.
string | $name | nome del tag |
mixed | $value | valore del tag |
array | $options | array associativo di opzioni
|
|
staticprivate |
Codice per la visualizzazione allegati contestualmente all'editor CKEDITOR.
|
static |
Input tag.
string | $name | nome input |
string | $type | valore della proprietà type (text) |
string | $value | valore attivo |
array | $options | array associativo di opzioni
|
|
static |
Input di tipo data con label.
string | $name | nome input |
string | $value | valore attivo |
mixed | $label | testo <label> |
array | $options | array associativo di opzioni (aggiungere quelle del metodo input())
|
|
static |
Input file con label Integra il checkbox di eliminazione del file e non è gestita l'obbligatorietà del campo.
string | $name | nome input |
string | $value | nome del file |
string | $label | testo <label> |
array | $options | array associativo di opzioni (aggiungere quelle del metodo input())
|
|
static |
Input con label.
string | $name | nome input |
string | $type | valore della proprietà type (text) |
string | $value | valore attivo |
mixed | $label | testo <label> |
array | $options | array associativo di opzioni (aggiungere quelle del metodo input())
|
|
staticprivate |
Controlla che il path sia di un'immagine.
string | $path |
|
static |
Funzione javascript che conta il numero dei caratteri ancora disponibili all'interno di un textarea.
|
static |
TAG LABEL.
string | $name | nome dell'etichetta |
mixed | $text | testo dell'etichetta, testo o array (array-> array('label'=>_("..."), 'description'=>_("..."))) |
boolean | $required | campo obbligatorio |
|
static |
Iput checkbox multiplo (many to many) con label.
string | $name | nome input |
array | $checked | valori degli elementi selezionati |
mixed | $data |
|
string | $label | testo del tag label |
array | $options | array associativo di opzioni
|
|
static |
Simula un campo ma senza input.
string | $label | contenuto della prima colonna
|
string | $value | contenuto della seconda colonna |
|
static |
Input radio.
string | $name | nome input |
string | $value | valore attivo |
array | $data | elementi dei pulsanti radio (array(value=>text[,])) |
mixed | $default | valore di default |
array | $options | array associativo di opzioni
|
|
static |
Input radio con label.
string | $name | nome input |
string | $value | valore attivo |
array | $data | elementi dei pulsanti radio (array(value=>text[,])) |
mixed | $default | valore di default |
mixed | $label | testo <label> |
array | $options | array associativo di opzioni (aggiungere quelle del metodo radio())
|
|
static |
Input select.
string | $name | nome input |
mixed | $selected | elemento selezionato |
mixed | $data | elementi del select (query-> recupera due campi, array-> key=>value) |
array | $options | array associativo di opzioni
|
|
static |
Input select con label.
string | $name | nome input |
string | $value | elemento selezionato (ad es. valore da 'modifica') |
mixed | $data | elementi del select |
mixed | $label | testo del tag label |
array | $options | array associativo di opzioni opzioni del metodo select() opzioni specifiche
|
|
static |
Textarea.
string | $name | nome input |
string | $value | valore attivo |
array | $options | array associativo di opzioni opzioni del textarea
|
|
static |
Textarea con label.
string | $name | nome input |
string | $value | valore attivo |
string | $label | testo del tag label |
array | $options | array associativo di opzioni opzioni del metodo textarea() opzioni specifiche
|