Lines Matching +full:- +full:- +full:debug
3 * Prolog plug-in : Rule-based System for Groupware.
13 var $allowedOptions = array('debug', 'files', 'source');
21 $this->setAttributePattern($this->name);
49 if($this->authorizedOption == $option)
61 if($this->isAllowedOption($option))
62 $this->authorizedOption = $option;
64 $this->authorizedOption = null;
74 if(in_array($option, $this->allowedOptions))
87 if(!$this->isAuthorizedOption('files'))
90 …$filesList = '<pre><u>Prolog plug-in</u> - option <i><b>files</b></i><br /><b>Included files:</b><…
106 if(!$this->isAuthorizedOption('source'))
109 …$source = '<pre><u>Prolog plug-in</u> - option <i><b>source</b></i><br /><b>Source code:</b><br />…
116 * Handles the "debug" option
118 * @return string $debug formatted prolog errors pipe content to display
122 if(!$this->isAuthorizedOption('debug'))
125 …$debug = '<pre><u>Prolog plug-in</u> - option <i><b>debug</b></i><br /><b>Compilation results:</b>…
126 $debug .= $errors;
127 $debug .= '</pre>';
128 return $debug;