You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					35 lines
				
				696 B
			
		
		
			
		
	
	
					35 lines
				
				696 B
			| 
											12 years ago
										 | <?php
 | ||
|  | use yii\helpers\Html;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * @var string $caption
 | ||
|  |  * @var array $values
 | ||
|  |  */
 | ||
|  | ?>
 | ||
|  | <h3><?= $caption ?></h3>
 | ||
|  | 
 | ||
|  | <?php if (empty($values)): ?>
 | ||
|  | 
 | ||
|  | 	<p>Empty.</p>
 | ||
|  | 
 | ||
|  | <?php else:	?>
 | ||
|  | 
 | ||
|  | 	<table class="table table-condensed table-bordered table-striped table-hover" style="table-layout: fixed;">
 | ||
|  | 		<thead>
 | ||
|  | 			<tr>
 | ||
|  | 				<th style="width: 200px;">Name</th>
 | ||
|  | 				<th>Value</th>
 | ||
|  | 			</tr>
 | ||
|  | 		</thead>
 | ||
|  | 		<tbody>
 | ||
|  | 		<?php foreach($values as $name => $value): ?>
 | ||
|  | 			<tr>
 | ||
|  | 				<th style="width: 200px;"><?= Html::encode($name) ?></th>
 | ||
|  | 				<td><?= htmlspecialchars(var_export($value, true), ENT_QUOTES|ENT_SUBSTITUTE, \Yii::$app->charset, true) ?></td>
 | ||
|  | 			</tr>
 | ||
|  | 		<?php endforeach; ?>
 | ||
|  | 		</tbody>
 | ||
|  | 	</table>
 | ||
|  | 
 | ||
|  | <?php endif; ?>
 |