6 <h3><?php echo $caption; ?></h3>
7 <?php
if (!empty($values)): ?>
8 <table
class=
"table table-condensed table-bordered table-striped table-hover" style=
"table-layout: fixed;">
11 <th style=
"width: 300px;">Name</th>
16 <?php
foreach ($values as $name => $value): ?>
18 <th style=
"width:300px;word-break:break-all;">
19 <?php echo CHtml::encode($name); ?>
22 <div style=
"overflow:auto">
23 <?php
if (is_string($value)): ?>
24 <?php echo CHtml::encode($value); ?>
26 <div
class=
"src <?php echo $this->highlightCode ? 'hl' : 'no-hl'; ?>"><?php
27 CVarDumper::dump($value, 10, $this->highlightCode);