diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php index 054c8af52f74933a92b00e892318c01fcbb6bc1a..37d301119b5d407dd6acb499cd0b0eff73621a81 100644 --- a/public_html/deployment/classes/project.class.php +++ b/public_html/deployment/classes/project.class.php @@ -3958,12 +3958,24 @@ class project extends base { // -------------------------------------------------- // Tab for raw data // -------------------------------------------------- + + $sRolloutDebug='<hr>DEBUG:<br>'; + foreach (array_keys($this->getPhases()) as $sPhase) { + if ($this->isActivePhase($sPhase)){ + $sRolloutDebug.='<strong>'.$sPhase.'</strong>' + . '<pre>Config = '.print_r($this->oRolloutPlugin->getConfig($sPhase), 1).'</pre>' + . '<pre>Commands = '.print_r($this->oRolloutPlugin->getDeployCommands($sPhase), 1).'</pre>' + ; + } + } + $aForms["setup"]["form"]['input' . $i++] = array( 'type' => 'markup', 'value' => '</div>' . '<div class="tab-pane" id="tab6">' . '<br><pre>'.print_r($this->_aPrjConfig, 1).'</pre>' + . $sRolloutDebug . '</div>' . '</div>'