PluginProbe
GetResponse Forms by Optin Cat / 1.3.5
GetResponse Forms by Optin Cat v1.3.5
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / includes / classes / kint / decorators / plain.php

plain.php in GetResponse Forms by Optin Cat 1.3.5, at includes/classes/kint/decorators/plain.php

54 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class Kint_Decorators_Plain extends Kint
3 {
4 /**
5 * output:
6 *
7 * [access *] [name] type [operator *] [subtype] [size] [value]
8 *
9 * @param kintParser $kintVar
10 *
11 * @return string
12 */
13 protected static function decorate( $kintVar )
14 {
15 }
16
17
18 /**
19 * produces css and js required for display. May be called multiple times, will only produce output once per
20 * pageload or until `-` or `@` modifier is used
21 *
22 * @return string
23 */
24 protected static function _css()
25 {
26 }
27
28
29
30 /**
31 * called for each dump, opens the html tag
32 *
33 * @param array $callee caller information taken from debug backtrace
34 *
35 * @return string
36 */
37 protected static function _wrapStart( $callee )
38 {
39 }
40
41
42 /**
43 * closes Kint::_wrapStart() started html tags and displays callee information
44 *
45 * @param array $callee caller information taken from debug backtrace
46 * @param array $prevCaller previous caller information taken from debug backtrace
47 *
48 * @return string
49 */
50 private static function _wrapEnd( $callee, $prevCaller )
51 {
52 }
53
54 }