[[debug()]]
This translation is older than the original page and might be outdated. See what has changed.
Translations of this page:
 

This is an old revision of the document!


debug()

void debug(mixed object)

The function debug() conveniently shows the project manager the content of a PHP or data variable or a placeholder in debug mode. This is particularly helpful when monitoring filters and, as the case may be, as Problem Solutions for Filters

Note: The content of the respective variable is only shown if the questionnaire is started in debug mode Start Questionnaire in Debug Mode.

  • object
    • The ID of a data variable or a placeholder, or
    • A PHP variable (Variables)

Examples

// Display response before the filter for the selection AB01 is executed
debug('AB01');
if (value('AB01') == 2) {
  goToPage('end');
}
 
// Placeholders
$random = random(1,10);
if ($random == 1) {
  replace('%category%', 'employee');
} else {
  replace('%category%', 'superior');
} 
debug('category');
 
// Show PHP variable
$itemlist = getItems('AB09', 'min', 2);
debug($itemlist);

Display Debug Information

en/create/functions/debug.1419196703.txt.gz · Last modified: 21.12.2014 22:18 by admin
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
Driven by DokuWiki