Lines Matching +full:- +full:- +full:debug
38 * --> execute here <--
50 $this->Lexer->addSpecialPattern('{{datedifference.*?}}',$mode,'plugin_datedifference');
65 $data['debug'] = 0;
68 $provided_data = substr($match, 17, -2);
92 case 'debug':
95 $data['debug'] = 1;
98 $data['debug'] = 0;
113 $renderer->doc .= $this->calculate_difference($data);
129 $date_debug = $data['debug'];
132 $date_from->setTimezone(new DateTimeZone('UTC'));
133 $date_to->setTimezone(new DateTimeZone('UTC'));
135 // debug information
137 …$debug = "(" . $date_from->format(DateTime::RFC3339) . " → " . $date_to->format(DateTime::RF…
139 $debug = "";
142 // up - target date is in the future
143 // down - target date is in the past
161 $years = $interval->format('%y');
162 $months = $interval->format('%m');
163 $days = $interval->format('%d');
164 $hours = $interval->format('%h');
165 $minutes = $interval->format('%i');
194 // concatenate result, debug information and up/down arrow
195 $html = "<span class=\"datedifference\">$result $debug $arrow</span>";
201 //Setup VIM: ex: et ts=4 enc=utf-8 :