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.
		
		
		
		
			
				
					47 lines
				
				1.0 KiB
			
		
		
			
		
	
	
					47 lines
				
				1.0 KiB
			| 
								 
											13 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use yii\helpers\Html;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 * @var \yii\web\View $this
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * @var array $manifest
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								$this->title = 'Yii Debugger';
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								?>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								<div class="default-index">
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									<div id="yii-debug-toolbar">
							 | 
						||
| 
								 | 
							
										<div class="yii-debug-toolbar-block title">
							 | 
						||
| 
								 | 
							
											Yii Debugger
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										</div>
							 | 
						||
| 
								 | 
							
									</div>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									<div class="container">
							 | 
						||
| 
								 | 
							
										<div class="row">
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
											<h1>Available Debug Data</h1>
							 | 
						||
| 
								 | 
							
											<table class="table table-condensed table-bordered table-striped table-hover" style="table-layout: fixed;">
							 | 
						||
| 
								 | 
							
												<thead>
							 | 
						||
| 
								 | 
							
													<tr>
							 | 
						||
| 
								 | 
							
														<th style="width: 120px;">Tag</th>
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
														<th style="width: 170px;">Time</th>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
														<th style="width: 120px;">IP</th>
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
														<th style="width: 70px;">Method</th>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
														<th>URL</th>
							 | 
						||
| 
								 | 
							
													</tr>
							 | 
						||
| 
								 | 
							
												</thead>
							 | 
						||
| 
								 | 
							
												<tbody>
							 | 
						||
| 
								 | 
							
													<?php foreach ($manifest as $tag => $data): ?>
							 | 
						||
| 
								 | 
							
													<tr>
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
														<td><?= Html::a($tag, ['view', 'tag' => $tag]) ?></td>
							 | 
						||
| 
								 | 
							
														<td><?= date('Y-m-d h:i:sa', $data['time']) ?></td>
							 | 
						||
| 
								 | 
							
														<td><?= $data['ip'] ?></td>
							 | 
						||
| 
								 | 
							
														<td><?= $data['method'] ?></td>
							 | 
						||
| 
								 | 
							
														<td><?= $data['url'] ?></td>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
													</tr>
							 | 
						||
| 
								 | 
							
													<?php endforeach; ?>
							 | 
						||
| 
								 | 
							
												</tbody>
							 | 
						||
| 
								 | 
							
											</table>
							 | 
						||
| 
								 | 
							
										</div>
							 | 
						||
| 
								 | 
							
									</div>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								</div>
							 |