-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathshow_converted_directory.php
39 lines (39 loc) · 1.7 KB
/
show_converted_directory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?PHP
/**
* GUI Template: directory conversion summary.
*
* @category GUI
*
* @author Andrey Hristov <andrey@php.net>, Ulf Wendel <ulf.wendel@phpdoc.de>
* @copyright 1997-2006 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
*
* @version CVS: $Id:$, Release: @package_version@
*
* @link http://www.mysql.com
* @since Available since Release 1.0
*/
?>
<div class="maintextbox">
<h2>Results of the conversion</h2>
<table class="conversiondetailstable" style="margin-left:0em">
<tr>
<th style="padding:0.5em" nowrap="nowrap">Number of Files</th>
<th style="padding:0.5em">OK</th>
<th style="padding:0.5em">Warnings</th>
<th style="padding:0.5em">Errors</th>
<th style="padding:0.5em" nowrap="nowrap">Number of mysql_*-functions found</th>
<th style="padding:0.5em" nowrap="nowrap">Number of mysql_*-functions converted</th>
<th style="padding:0.5em">Code (kB)</th>
</tr>
<tr>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_count; ?></td>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_ok; ?></td>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_warnings; ?></td>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_errors; ?></td>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_found; ?></td>
<td align="right" style="padding:0.5em"><?php echo $snippet_conv_converted; ?></td>
<td align="right" style="padding:0.5em"><?php printf('%d', ($snippet_conv_length > 0) ? $snippet_conv_length / 1024 : 0); ?></td>
</tr>
</table>
</div>