![]() |
XOOPS API 2.5.11 Beta1
UI v0.5
Réalisé par monxoops.fr
|
Fonctions membres publiques | |
| __construct ($max_depth=false, $c=null) | |
| parse (&$var, Kint_Object $o) | |
| addPlugin (Kint_Parser_Plugin $p) | |
| clearPlugins () | |
| haltParse () | |
| childHasPath (Kint_Object_Instance $parent, Kint_Object $child) | |
| getCleanArray (array $array) | |
Champs de données | |
| $caller_class | |
| $max_depth | |
| const | TRIGGER_NONE = 0 |
| const | TRIGGER_BEGIN = 1 |
| const | TRIGGER_SUCCESS = 2 |
| const | TRIGGER_RECURSION = 4 |
| const | TRIGGER_DEPTH_LIMIT = 8 |
| const | TRIGGER_COMPLETE = 14 |
Fonctions membres privées | |
| parseGeneric (&$var, Kint_Object $o) | |
| parseString (&$var, Kint_Object $o) | |
| parseArray (array &$var, Kint_Object $o) | |
| parseObject (&$var, Kint_Object $o) | |
| parseResource (&$var, Kint_Object $o) | |
| parseUnknown (&$var, Kint_Object $o) | |
| applyPlugins (&$var, Kint_Object &$o, $trigger) | |
Fonctions membres privées statiques | |
| static | sortObjectProperties (Kint_Object $a, Kint_Object $b) |
Attributs privés | |
| $marker | |
| $object_hashes = array() | |
| $parse_break = false | |
| $plugins = array() | |
| addPlugin | ( | Kint_Parser_Plugin | $p | ) |
Voici le graphe d'appel pour cette fonction :
|
private |
Applies plugins for an object type.
| mixed | &$var | variable |
| Kint_Object | &$o | Kint object parsed so far |
| int | $trigger | The trigger to check for the plugins |
Voici le graphe des appelants de cette fonction :| childHasPath | ( | Kint_Object_Instance | $parent, |
| Kint_Object | $child | ||
| ) |
Voici le graphe des appelants de cette fonction :| clearPlugins | ( | ) |
| getCleanArray | ( | array | $array | ) |
Returns an array without the recursion marker in it.
DO NOT pass an array that has had it's marker removed back into the parser, it will result in an extra recursion
| array | $array | Array potentially containing a recursion marker |
| haltParse | ( | ) |
| parse | ( | & | $var, |
| Kint_Object | $o | ||
| ) |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
private |
Voici le graphe d'appel pour cette fonction :
Voici le graphe des appelants de cette fonction :
|
staticprivate |
Voici le graphe d'appel pour cette fonction :| $caller_class |
|
private |
| $max_depth |
|
private |
|
private |
|
private |
| const TRIGGER_BEGIN = 1 |
| const TRIGGER_COMPLETE = 14 |
| const TRIGGER_DEPTH_LIMIT = 8 |
| const TRIGGER_NONE = 0 |
Plugin triggers.
These are constants indicating trigger points for plugins
BEGIN: Before normal parsing SUCCESS: After successful parsing RECURSION: After parsing cancelled by recursion DEPTH_LIMIT: After parsing cancelled by depth limit COMPLETE: SUCCESS | RECURSION | DEPTH_LIMIT
While a plugin's getTriggers may return any of these
| const TRIGGER_RECURSION = 4 |
| const TRIGGER_SUCCESS = 2 |