HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
explain.php
Go to the documentation of this file.
1 <?php
14 $this->pageTitle = 'Explain Query - Yii Debugger';
15 ?>
16 <div class="default-view">
17  <?php $this->renderPartial('_toolbar', array('panels' => $panels)); ?>
18  <div class="container-fluid">
19  <div class="row-fluid">
20  <div class="span12">
21  <h1>Explain Query (<?php echo $connection->driverName; ?>)</h1>
22  <div class="well">
23  <?php echo $dbPanel->highlightCode ? $dbPanel->highlightSql($procedure) : CHtml::encode($procedure); ?>
24  </div>
25  <?php $this->renderPartial('_explain', array(
26  'connection' => $connection,
27  'explainRows' => $explainRows,
28  )); ?>
29  </div><!--/span-->
30  </div>
31  </div>
32 </div>