@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | |
26 | 26 | $bitset = ''; |
27 | 27 | |
28 | -for ($i=0;$i<S_NFLAGS;$i++) { |
|
28 | +for ($i = 0; $i < S_NFLAGS; $i++) { |
|
29 | 29 | if (post_int("role".$i, TRUE) == '1') { |
30 | - $bitset = str_pad($bitset, $i+1, '1'); |
|
30 | + $bitset = str_pad($bitset, $i + 1, '1'); |
|
31 | 31 | } else { |
32 | - $bitset = str_pad($bitset, $i+1, '0'); |
|
32 | + $bitset = str_pad($bitset, $i + 1, '0'); |
|
33 | 33 | } |
34 | 34 | } |
35 | 35 | if ($bitset == "0000000") $bitset = ''; |
@@ -50,5 +50,5 @@ discard block |
||
50 | 50 | |
51 | 51 | admin_page_tail(); |
52 | 52 | |
53 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
53 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
54 | 54 | ?> |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $bitset = ''; |
27 | 27 | |
28 | 28 | for ($i=0;$i<S_NFLAGS;$i++) { |
29 | - if (post_int("role".$i, TRUE) == '1') { |
|
29 | + if (post_int("role".$i, true) == '1') { |
|
30 | 30 | $bitset = str_pad($bitset, $i+1, '1'); |
31 | 31 | } else { |
32 | 32 | $bitset = str_pad($bitset, $i+1, '0'); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | return $db->insert_id(); |
42 | 42 | } |
43 | 43 | |
44 | -function create_forum($category, $orderID, $title, $description, $is_dev_blog=0) { |
|
44 | +function create_forum($category, $orderID, $title, $description, $is_dev_blog = 0) { |
|
45 | 45 | $q = "(category, orderID, title, description, is_dev_blog) values ($category, $orderID, '$title', '$description', $is_dev_blog)"; |
46 | 46 | $db = BoincDB::get(); |
47 | - $result = $db->insert("forum",$q); |
|
47 | + $result = $db->insert("forum", $q); |
|
48 | 48 | if (!$result) { |
49 | 49 | $forum = BoincForum::lookup("category=$category and title='$title'"); |
50 | 50 | if ($forum) return $forum->id; |
@@ -72,5 +72,5 @@ discard block |
||
72 | 72 | create_forum($catid, 4, "Preferences", "Using preferences"); |
73 | 73 | create_forum($catid, 6, "Web site", "Issues involving this web site"); |
74 | 74 | |
75 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
75 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
76 | 76 | ?> |
@@ -200,7 +200,7 @@ |
||
200 | 200 | for ($row = 0; $row < $height; $row++) { |
201 | 201 | echo "<tr>"; |
202 | 202 | for ($col = 0; $col < $width; $col++) { |
203 | - if ($count < $numIds) { |
|
203 | + if ($count < $numIds) { |
|
204 | 204 | echo "<td class=\"bordered\" align=\"center\"> |
205 | 205 | <a href=\"".secure_url_base()."view_profile.php?userid=".$userIds[$count]."\"><img src=\"".secure_url_base().IMAGE_URL.$userIds[$count]."_sm.jpg\"></a> |
206 | 206 | </td>"; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | // TODO: convert to new DB interface |
41 | 41 | |
42 | -$alphabet = array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3','4','5','6','7','8','9'); |
|
42 | +$alphabet = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'); |
|
43 | 43 | |
44 | 44 | |
45 | 45 | // Builds a summary table of user profiles. |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | function show_user_table($members, $offset, $numToDisplay, $cols) { |
54 | 54 | start_table(); |
55 | 55 | |
56 | - $rows = ceil($numToDisplay / $cols); |
|
56 | + $rows = ceil($numToDisplay/$cols); |
|
57 | 57 | $count = $offset; |
58 | 58 | $numMembers = count($members); |
59 | 59 | |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | // Build an array of IDs of all users with pictures in their profiles. |
152 | 152 | $userIds = array(); |
153 | 153 | $numIds = 0; |
154 | - foreach($profiles as $profile) { |
|
154 | + foreach ($profiles as $profile) { |
|
155 | 155 | $user = BoincUser::lookup_id($profile->userid); |
156 | 156 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
157 | 157 | if ($user->name) { |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | // shuffle($userIds); |
172 | 172 | // } |
173 | 173 | |
174 | - $numPages = ceil(count($userIds)/($width * $height)); |
|
174 | + $numPages = ceil(count($userIds)/($width*$height)); |
|
175 | 175 | |
176 | 176 | // Make sure that a page is generated even when no profiles with pictures |
177 | 177 | // exist in order to avoid 404 errors from the profile_menu page. |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | $count = 0; |
186 | 186 | |
187 | 187 | for ($page = 1; $page <= $numPages; $page++) { |
188 | - $filename = PROFILE_PATH . "user_gallery_" . $page . ".html"; |
|
188 | + $filename = PROFILE_PATH."user_gallery_".$page.".html"; |
|
189 | 189 | open_output_buffer(); |
190 | 190 | |
191 | 191 | page_head("Profile gallery: page $page of $numPages", null, false, "../"); |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | // of the userids who belong to those countries. |
245 | 245 | // Format: array[country][index] = userid. |
246 | 246 | |
247 | - foreach($profiles as $profile) { |
|
247 | + foreach ($profiles as $profile) { |
|
248 | 248 | $user = BoincUser::lookup_id($profile->userid); |
249 | 249 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
250 | 250 | if ($user->country) { |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | // TODO: Define a constant for the desired number of rows per page. |
265 | 265 | |
266 | 266 | foreach ($countries as $country) { |
267 | - $baseFileName = "profile_country_" . get_legal_filename($country); |
|
267 | + $baseFileName = "profile_country_".get_legal_filename($country); |
|
268 | 268 | build_profile_pages( |
269 | 269 | $countryMembers[$country], |
270 | 270 | "User Profiles from $country", 5, 2, |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | $numIds = 0; |
291 | 291 | $members = array(); |
292 | 292 | |
293 | - foreach($profiles as $profile) { |
|
293 | + foreach ($profiles as $profile) { |
|
294 | 294 | $user = BoincUser::lookup_id($profile->userid); |
295 | 295 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
296 | 296 | if ($user->name) { |
@@ -335,11 +335,11 @@ discard block |
||
335 | 335 | function build_profile_pages( |
336 | 336 | $members, $title, $rowsPerPage, $colsPerPage, $dir, $base_filename |
337 | 337 | ) { |
338 | - $numPerPage = $rowsPerPage * $colsPerPage; |
|
339 | - $numPages = ceil(count($members) / $numPerPage); |
|
338 | + $numPerPage = $rowsPerPage*$colsPerPage; |
|
339 | + $numPages = ceil(count($members)/$numPerPage); |
|
340 | 340 | |
341 | 341 | for ($page = 1; $page <= $numPages; $page++) { |
342 | - $filename = $dir . $base_filename . "_" . $page . ".html"; |
|
342 | + $filename = $dir.$base_filename."_".$page.".html"; |
|
343 | 343 | open_output_buffer(); |
344 | 344 | |
345 | 345 | $pagetitle = $title.": Page $page of $numPages"; |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | |
348 | 348 | echo "Last updated ", pretty_time_str(time()), "<p>\n"; |
349 | 349 | |
350 | - $offset = (($page-1) * $rowsPerPage * $colsPerPage); |
|
350 | + $offset = (($page - 1)*$rowsPerPage*$colsPerPage); |
|
351 | 351 | |
352 | 352 | show_user_table($members, $offset, $numPerPage, $colsPerPage); |
353 | 353 | |
@@ -364,11 +364,11 @@ discard block |
||
364 | 364 | print_debug_msg("Beginning to build country summary page..."); |
365 | 365 | $countries = array_keys($countryMembers); |
366 | 366 | |
367 | - $filename = PROFILE_PATH . "profile_country.html"; |
|
367 | + $filename = PROFILE_PATH."profile_country.html"; |
|
368 | 368 | open_output_buffer(); |
369 | 369 | |
370 | 370 | page_head("User Profiles by Country", null, null, "../"); |
371 | - echo "Last updated " . pretty_time_str(time()) . "<p>"; |
|
371 | + echo "Last updated ".pretty_time_str(time())."<p>"; |
|
372 | 372 | |
373 | 373 | start_table(); |
374 | 374 | row_heading_array(array("Country", "Profiles")); |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | |
414 | 414 | $caching = true; |
415 | 415 | |
416 | -if (@$argv[1]=="-d") $debug=true; |
|
416 | +if (@$argv[1] == "-d") $debug = true; |
|
417 | 417 | |
418 | 418 | build_country_pages(); |
419 | 419 | build_alpha_pages(); |
@@ -180,7 +180,7 @@ |
||
180 | 180 | $numPages = 1; |
181 | 181 | } |
182 | 182 | |
183 | - print_debug_msg("Generating $numPages pages"); |
|
183 | + print_debug_msg("generating $numPages pages"); |
|
184 | 184 | |
185 | 185 | $count = 0; |
186 | 186 |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | // - daily total |
24 | 24 | // - breakdown by desc (number, credit) |
25 | 25 | |
26 | -ini_set ("memory_limit", "1G"); |
|
26 | +ini_set("memory_limit", "1G"); |
|
27 | 27 | set_time_limit(0); |
28 | 28 | |
29 | 29 | $cli_only = true; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | add_to_array($days, $day, $granted); |
77 | 77 | } |
78 | 78 | $i++; |
79 | - if ($i % 10000 == 0) echo "$i\n"; |
|
79 | + if ($i%10000 == 0) echo "$i\n"; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | uasort($hosts, "compare"); |
@@ -37,14 +37,14 @@ discard block |
||
37 | 37 | |
38 | 38 | // activate/deactivate script |
39 | 39 | if (1) { |
40 | - echo " |
|
40 | + echo " |
|
41 | 41 | This script needs to be activated before it can be run. |
42 | 42 | Once you understand what the script does you can change the |
43 | 43 | if (1) to if (0) at the top of the file to activate it. |
44 | 44 | Be sure to deactivate the script after using it to make sure |
45 | 45 | it is not accidentally run. |
46 | 46 | "; |
47 | - exit; |
|
47 | + exit; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | db_init(); |
@@ -63,33 +63,33 @@ discard block |
||
63 | 63 | // loop over all users |
64 | 64 | while ($user = _mysql_fetch_object($result)) { |
65 | 65 | |
66 | - $id=$user->id; |
|
67 | - $email_addr=$user->email_addr; |
|
68 | - $cpid=$user->cross_project_id; |
|
66 | + $id=$user->id; |
|
67 | + $email_addr=$user->email_addr; |
|
68 | + $cpid=$user->cross_project_id; |
|
69 | 69 | |
70 | - $new_email=strtolower(trim($email_addr)); |
|
70 | + $new_email=strtolower(trim($email_addr)); |
|
71 | 71 | |
72 | - if (strcmp($email_addr, $new_email)) |
|
72 | + if (strcmp($email_addr, $new_email)) |
|
73 | 73 | echo "Problematic email address [$id] $email_addr becomes $new_email<br/>"; |
74 | 74 | |
75 | - if (!(strcmp($cpid,"0"))) { |
|
75 | + if (!(strcmp($cpid,"0"))) { |
|
76 | 76 | $newcpid=random_string(); |
77 | 77 | echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>"; |
78 | - } |
|
79 | - else |
|
78 | + } |
|
79 | + else |
|
80 | 80 | $newcpid=$cpid; |
81 | 81 | |
82 | - if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) { |
|
82 | + if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) { |
|
83 | 83 | $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
84 | 84 | if ($confirm != "yes") { |
85 | - echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
|
86 | - $update_needed = TRUE; |
|
85 | + echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
|
86 | + $update_needed = TRUE; |
|
87 | 87 | } |
88 | 88 | else { |
89 | - _mysql_query($update); |
|
90 | - echo "Doing $update<br/>\n"; |
|
89 | + _mysql_query($update); |
|
90 | + echo "Doing $update<br/>\n"; |
|
91 | + } |
|
91 | 92 | } |
92 | - } |
|
93 | 93 | } |
94 | 94 | if ($confirm != "yes" && $update_needed) { |
95 | 95 | echo "You can enable the changes by <a href=\"make_emails_lowercase.php?confirm=yes\">click</a>"; |
@@ -63,24 +63,24 @@ discard block |
||
63 | 63 | // loop over all users |
64 | 64 | while ($user = _mysql_fetch_object($result)) { |
65 | 65 | |
66 | - $id=$user->id; |
|
67 | - $email_addr=$user->email_addr; |
|
68 | - $cpid=$user->cross_project_id; |
|
66 | + $id = $user->id; |
|
67 | + $email_addr = $user->email_addr; |
|
68 | + $cpid = $user->cross_project_id; |
|
69 | 69 | |
70 | - $new_email=strtolower(trim($email_addr)); |
|
70 | + $new_email = strtolower(trim($email_addr)); |
|
71 | 71 | |
72 | 72 | if (strcmp($email_addr, $new_email)) |
73 | 73 | echo "Problematic email address [$id] $email_addr becomes $new_email<br/>"; |
74 | 74 | |
75 | - if (!(strcmp($cpid,"0"))) { |
|
76 | - $newcpid=random_string(); |
|
75 | + if (!(strcmp($cpid, "0"))) { |
|
76 | + $newcpid = random_string(); |
|
77 | 77 | echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>"; |
78 | 78 | } |
79 | 79 | else |
80 | - $newcpid=$cpid; |
|
80 | + $newcpid = $cpid; |
|
81 | 81 | |
82 | - if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) { |
|
83 | - $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
|
82 | + if (strcmp($email_addr, $new_email) || strcmp($newcpid, $cpid)) { |
|
83 | + $update = "update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
|
84 | 84 | if ($confirm != "yes") { |
85 | 85 | echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
86 | 86 | $update_needed = TRUE; |
@@ -99,5 +99,5 @@ discard block |
||
99 | 99 | _mysql_free_result($result); |
100 | 100 | |
101 | 101 | admin_page_tail(); |
102 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
102 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
103 | 103 | ?> |
@@ -75,8 +75,7 @@ discard block |
||
75 | 75 | if (!(strcmp($cpid,"0"))) { |
76 | 76 | $newcpid=random_string(); |
77 | 77 | echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>"; |
78 | - } |
|
79 | - else |
|
78 | + } else |
|
80 | 79 | $newcpid=$cpid; |
81 | 80 | |
82 | 81 | if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) { |
@@ -84,8 +83,7 @@ discard block |
||
84 | 83 | if ($confirm != "yes") { |
85 | 84 | echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
86 | 85 | $update_needed = TRUE; |
87 | - } |
|
88 | - else { |
|
86 | + } else { |
|
89 | 87 | _mysql_query($update); |
90 | 88 | echo "Doing $update<br/>\n"; |
91 | 89 | } |
@@ -83,11 +83,11 @@ |
||
83 | 83 | $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
84 | 84 | if ($confirm != "yes") { |
85 | 85 | echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
86 | - $update_needed = TRUE; |
|
86 | + $update_needed = true; |
|
87 | 87 | } |
88 | 88 | else { |
89 | 89 | _mysql_query($update); |
90 | - echo "Doing $update<br/>\n"; |
|
90 | + echo "doing $update<br/>\n"; |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | } |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $f = fopen("temp.xml", "w"); |
101 | 101 | $teams = BoincTeam::enum(null); |
102 | 102 | fwrite($f, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<teams>\n"); |
103 | - foreach($teams as $team) { |
|
103 | + foreach ($teams as $team) { |
|
104 | 104 | handle_team($team, $f); |
105 | 105 | } |
106 | 106 | fwrite($f, "</teams>\n"); |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $i = 0; |
40 | 40 | foreach ($badges as $badge) { |
41 | 41 | echo "<tr class=row$i valign=top><form action=badge_admin.php method=POST>"; |
42 | - $i = 1-$i; |
|
42 | + $i = 1 - $i; |
|
43 | 43 | echo "<td>$badge->id</td>\n"; |
44 | 44 | echo "<input type=hidden name=id value=$badge->id>"; |
45 | 45 | $nu = BoincBadgeUser::count("badge_id=$badge->id"); |
@@ -42,15 +42,15 @@ |
||
42 | 42 | $start_id = 0; //Set this to something else if you like |
43 | 43 | $forum_preferencess = _mysql_query("select * from forum_preferences where userid>$start_id order by userid"); |
44 | 44 | echo _mysql_error(); |
45 | - $i=0; |
|
46 | - while ($forum_preferences = _mysql_fetch_object($forum_preferencess)){ |
|
45 | + $i = 0; |
|
46 | + while ($forum_preferences = _mysql_fetch_object($forum_preferencess)) { |
|
47 | 47 | $i++; |
48 | 48 | if ($i%100 == 0) { //For every 100 forum_preferencess |
49 | - echo $forum_preferences->userid.". "; flush(); // print out where we are |
|
49 | + echo $forum_preferences->userid.". "; flush(); // print out where we are |
|
50 | 50 | //usleep(200000); |
51 | 51 | } |
52 | 52 | |
53 | - if ($forum_preferences->userid > $start_id){ |
|
53 | + if ($forum_preferences->userid > $start_id) { |
|
54 | 54 | fix_forum_preferences($forum_preferences); |
55 | 55 | } |
56 | 56 | } |
@@ -43,14 +43,15 @@ |
||
43 | 43 | $forum_preferencess = _mysql_query("select * from forum_preferences where userid>$start_id order by userid"); |
44 | 44 | echo _mysql_error(); |
45 | 45 | $i=0; |
46 | - while ($forum_preferences = _mysql_fetch_object($forum_preferencess)){ |
|
46 | + while ($forum_preferences = _mysql_fetch_object($forum_preferencess)) { |
|
47 | 47 | $i++; |
48 | - if ($i%100 == 0) { //For every 100 forum_preferencess |
|
48 | + if ($i%100 == 0) { |
|
49 | +//For every 100 forum_preferencess |
|
49 | 50 | echo $forum_preferences->userid.". "; flush(); // print out where we are |
50 | 51 | //usleep(200000); |
51 | 52 | } |
52 | 53 | |
53 | - if ($forum_preferences->userid > $start_id){ |
|
54 | + if ($forum_preferences->userid > $start_id) { |
|
54 | 55 | fix_forum_preferences($forum_preferences); |
55 | 56 | } |
56 | 57 | } |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | function __construct($n, $d, $i, $t, $r, $s) { |
16 | 16 | $this->name = $n; |
17 | 17 | $this->data_size = $d; |
18 | - $this->index_size = $i; |
|
19 | - $this->total_size = $t; |
|
20 | - $this->rows = $r; |
|
21 | - $this->size_per_row = $s; |
|
18 | + $this->index_size = $i; |
|
19 | + $this->total_size = $t; |
|
20 | + $this->rows = $r; |
|
21 | + $this->size_per_row = $s; |
|
22 | 22 | } |
23 | 23 | function __destruct() { |
24 | 24 | } |
@@ -42,40 +42,40 @@ discard block |
||
42 | 42 | |
43 | 43 | // returns formatted data size |
44 | 44 | function size_format($size){ |
45 | - $retval = 0; |
|
45 | + $retval = 0; |
|
46 | 46 | |
47 | - $KB = 1024; |
|
47 | + $KB = 1024; |
|
48 | 48 | $MB = 1024*1024; |
49 | 49 | $GB = 1024*1024*1024; |
50 | - $TB = 1024*1024*1024*1024; |
|
50 | + $TB = 1024*1024*1024*1024; |
|
51 | 51 | |
52 | 52 | if ($size < $KB) { |
53 | - $retval = $size; |
|
53 | + $retval = $size; |
|
54 | 54 | } elseif (($size > $KB) && ($size < $MB)) { |
55 | - $retval = sprintf("%.0fK", ($size / $KB)); |
|
55 | + $retval = sprintf("%.0fK", ($size / $KB)); |
|
56 | 56 | } elseif ( ($size >= $MB) && ($size < $GB)) { |
57 | - $retval = sprintf("%.2fMB", ($size / $MB)); |
|
57 | + $retval = sprintf("%.2fMB", ($size / $MB)); |
|
58 | 58 | } elseif ( ($size >= $GB) && ($size < $TB)) { |
59 | - $retval = sprintf("%.2fGB", ($size / $GB)); |
|
60 | - } elseif ( $size >= $TB ) { |
|
61 | - $retval = sprintf("%.2fTB", ($size / $TB)); |
|
62 | - } |
|
63 | - return $retval; |
|
59 | + $retval = sprintf("%.2fGB", ($size / $GB)); |
|
60 | + } elseif ( $size >= $TB ) { |
|
61 | + $retval = sprintf("%.2fTB", ($size / $TB)); |
|
62 | + } |
|
63 | + return $retval; |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | |
67 | 67 | // returns the DB data structure as DB_REC |
68 | 68 | function get_db_info($db_name) |
69 | 69 | { |
70 | - // Carl grabbed this from the mysql.com boards http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html |
|
70 | + // Carl grabbed this from the mysql.com boards http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html |
|
71 | 71 | $result = _mysql_query("SHOW TABLE STATUS FROM $db_name"); |
72 | 72 | |
73 | 73 | // SQL output |
74 | 74 | // mysql> show table status from [table_name]; |
75 | 75 | // | Name | Engine | Version | Row_format | Rows |
76 | - // | Avg_row_length | Data_length | Max_data_length |
|
77 | - // | Index_length | Data_free | Auto_increment | Create_time |
|
78 | - // | Update_time | Check_time | Collation | Checksum | Create_options | Comment | |
|
76 | + // | Avg_row_length | Data_length | Max_data_length |
|
77 | + // | Index_length | Data_free | Auto_increment | Create_time |
|
78 | + // | Update_time | Check_time | Collation | Checksum | Create_options | Comment | |
|
79 | 79 | // |
80 | 80 | |
81 | 81 | $gdata = 0; |
@@ -83,24 +83,24 @@ discard block |
||
83 | 83 | $gtotal = 0; |
84 | 84 | $grows = 0; |
85 | 85 | |
86 | - $i = 0; |
|
87 | - $db_rec = array(); |
|
88 | - while($myarr = _mysql_fetch_assoc($result)) { |
|
86 | + $i = 0; |
|
87 | + $db_rec = array(); |
|
88 | + while($myarr = _mysql_fetch_assoc($result)) { |
|
89 | 89 | |
90 | - // sum grand totals |
|
91 | - $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
92 | - $gindex += $myarr["Index_length"]; |
|
90 | + // sum grand totals |
|
91 | + $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
92 | + $gindex += $myarr["Index_length"]; |
|
93 | 93 | $gdata += $myarr["Data_length"]; |
94 | - $grows += $myarr["Rows"]; |
|
95 | - $gtotal += $total; |
|
94 | + $grows += $myarr["Rows"]; |
|
95 | + $gtotal += $total; |
|
96 | 96 | |
97 | - $db_rec[$i] = new DB_REC ($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"] ); |
|
98 | - $i++; |
|
99 | - } |
|
97 | + $db_rec[$i] = new DB_REC ($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"] ); |
|
98 | + $i++; |
|
99 | + } |
|
100 | 100 | |
101 | 101 | $db_rec[$i] = new DB_REC ("Total", $gdata, $gindex, $gtotal, $grows, "" ); |
102 | 102 | |
103 | - return $db_rec; |
|
103 | + return $db_rec; |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | |
@@ -108,41 +108,41 @@ discard block |
||
108 | 108 | function show_db_info($db_name, $db_rec) |
109 | 109 | { |
110 | 110 | |
111 | - echo "<table cols=6>"; |
|
112 | - echo "<tr>"; |
|
113 | - echo "<th colspan=6> Database $db_name </th>"; |
|
114 | - echo "</tr>"; |
|
115 | - |
|
116 | - echo "<tr>"; |
|
117 | - echo "<th>Table</th>"; |
|
118 | - echo "<th>Data Size</th>"; |
|
119 | - echo "<th>Index Size</th>"; |
|
120 | - echo "<th>Total Size</th>"; |
|
121 | - echo "<th>Total Rows</th>"; |
|
122 | - echo "<th>Avg. Size per Row</th>"; |
|
123 | - echo "</tr>"; |
|
124 | - |
|
125 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
126 | - echo "<tr>"; |
|
127 | - echo "<td align=left valign=top class=fieldname>" . $db_rec[$i]->name . "</td>"; |
|
128 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->data_size) . "</td>"; |
|
129 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->index_size) . "</td>"; |
|
130 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->total_size) . "</td>"; |
|
111 | + echo "<table cols=6>"; |
|
112 | + echo "<tr>"; |
|
113 | + echo "<th colspan=6> Database $db_name </th>"; |
|
114 | + echo "</tr>"; |
|
115 | + |
|
116 | + echo "<tr>"; |
|
117 | + echo "<th>Table</th>"; |
|
118 | + echo "<th>Data Size</th>"; |
|
119 | + echo "<th>Index Size</th>"; |
|
120 | + echo "<th>Total Size</th>"; |
|
121 | + echo "<th>Total Rows</th>"; |
|
122 | + echo "<th>Avg. Size per Row</th>"; |
|
123 | + echo "</tr>"; |
|
124 | + |
|
125 | + for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
126 | + echo "<tr>"; |
|
127 | + echo "<td align=left valign=top class=fieldname>" . $db_rec[$i]->name . "</td>"; |
|
128 | + echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->data_size) . "</td>"; |
|
129 | + echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->index_size) . "</td>"; |
|
130 | + echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->total_size) . "</td>"; |
|
131 | 131 | echo "<td align=left valign=top class=fieldname>" . number_format($db_rec[$i]->rows) . "</td>"; |
132 | 132 | echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->size_per_row) . "</td>"; |
133 | - echo "</tr>"; |
|
134 | - } |
|
133 | + echo "</tr>"; |
|
134 | + } |
|
135 | 135 | |
136 | - // Last record is just a summary |
|
137 | - $i = sizeof($db_rec)-1; |
|
138 | - echo "<tr>"; |
|
136 | + // Last record is just a summary |
|
137 | + $i = sizeof($db_rec)-1; |
|
138 | + echo "<tr>"; |
|
139 | 139 | echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
140 | 140 | echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
141 | 141 | echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
142 | 142 | echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
143 | 143 | echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
144 | 144 | echo "<th align=left></th>"; |
145 | - echo "</tr>"; |
|
145 | + echo "</tr>"; |
|
146 | 146 | |
147 | 147 | echo "</table>"; |
148 | 148 | } |
@@ -152,80 +152,80 @@ discard block |
||
152 | 152 | // NB: same as show_db_info but with sortable cloumns |
153 | 153 | function sort_db_info($db_name, $db_rec) |
154 | 154 | { |
155 | - // sort |
|
156 | - $file_list = array(); |
|
155 | + // sort |
|
156 | + $file_list = array(); |
|
157 | 157 | $file_sort = array(); |
158 | 158 | |
159 | - $sort = get_str("sort", true); |
|
160 | - $r = get_str("r", true); |
|
161 | - |
|
162 | - // check if its empty |
|
163 | - if(empty($sort)) $sort = "name"; |
|
164 | - // check for allowed keys |
|
165 | - if ((strcmp($sort, "name")!=0) && |
|
166 | - (strcmp($sort, "data_size")!=0) && |
|
167 | - (strcmp($sort, "index_size")!=0) && |
|
168 | - (strcmp($sort, "total_size")!=0) && |
|
169 | - (strcmp($sort, "rows")!=0) && |
|
170 | - (strcmp($sort, "size_per_row")!=0)) |
|
171 | - $sort = "name"; |
|
172 | - if(empty($r)) $r=0; |
|
173 | - |
|
174 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
175 | - $file_details["name"] = $db_rec[$i]->name; |
|
176 | - $file_details["data_size"] = $db_rec[$i]->data_size; |
|
177 | - $file_details["index_size"] = $db_rec[$i]->index_size; |
|
178 | - $file_details["total_size"] = $db_rec[$i]->total_size; |
|
179 | - $file_details["rows"] = $db_rec[$i]->rows; |
|
180 | - $file_details["size_per_row"] = $db_rec[$i]->size_per_row; |
|
181 | - |
|
182 | - $file_list[$i] = $file_details; |
|
183 | - $key = strtolower($file_details[$sort]); |
|
184 | - $file_sort[$i] = $key; |
|
185 | - } |
|
159 | + $sort = get_str("sort", true); |
|
160 | + $r = get_str("r", true); |
|
161 | + |
|
162 | + // check if its empty |
|
163 | + if(empty($sort)) $sort = "name"; |
|
164 | + // check for allowed keys |
|
165 | + if ((strcmp($sort, "name")!=0) && |
|
166 | + (strcmp($sort, "data_size")!=0) && |
|
167 | + (strcmp($sort, "index_size")!=0) && |
|
168 | + (strcmp($sort, "total_size")!=0) && |
|
169 | + (strcmp($sort, "rows")!=0) && |
|
170 | + (strcmp($sort, "size_per_row")!=0)) |
|
171 | + $sort = "name"; |
|
172 | + if(empty($r)) $r=0; |
|
173 | + |
|
174 | + for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
175 | + $file_details["name"] = $db_rec[$i]->name; |
|
176 | + $file_details["data_size"] = $db_rec[$i]->data_size; |
|
177 | + $file_details["index_size"] = $db_rec[$i]->index_size; |
|
178 | + $file_details["total_size"] = $db_rec[$i]->total_size; |
|
179 | + $file_details["rows"] = $db_rec[$i]->rows; |
|
180 | + $file_details["size_per_row"] = $db_rec[$i]->size_per_row; |
|
181 | + |
|
182 | + $file_list[$i] = $file_details; |
|
183 | + $key = strtolower($file_details[$sort]); |
|
184 | + $file_sort[$i] = $key; |
|
185 | + } |
|
186 | 186 | |
187 | - if($r)arsort($file_sort); |
|
187 | + if($r)arsort($file_sort); |
|
188 | 188 | else asort($file_sort); |
189 | - // -- end sort |
|
190 | - |
|
191 | - echo "<table cols=6>"; |
|
192 | - echo "<tr>"; |
|
193 | - echo "<th colspan=6> Database $db_name </th>"; |
|
194 | - echo "</tr>"; |
|
195 | - |
|
196 | - echo "<tr>"; |
|
197 | - echo "<th><a href='dbinfo.php?sort=name&r=" . (!$r) . "'>Table </a></th>"; |
|
198 | - echo "<th><a href='dbinfo.php?sort=data_size&r=" . (!$r) . "'>Data Size</a></th>"; |
|
199 | - echo "<th><a href='dbinfo.php?sort=index_size&r=" . (!$r) . "'>Index Size</a></th>"; |
|
200 | - echo "<th><a href='dbinfo.php?sort=total_size&r=" . (!$r) . "'>Total Size</a></th>"; |
|
201 | - echo "<th><a href='dbinfo.php?sort=rows&r=" . (!$r) . "'>Total Rows</a></th>"; |
|
202 | - echo "<th><a href='dbinfo.php?sort=size_per_row&r=" . (!$r) . "'>Avg. Size per Row</a></th>"; |
|
203 | - echo "</tr>"; |
|
204 | - |
|
205 | - $i = 0; |
|
206 | - while ( list($key, $value) = each($file_sort) ) { |
|
207 | - $value = $file_list[$key]; |
|
208 | - echo "<tr>"; |
|
209 | - echo "<td align=left valign=top class=fieldname>" . $value["name"] . "</td>"; |
|
210 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["data_size"]) . "</td>"; |
|
211 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["index_size"]) . "</td>"; |
|
212 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["total_size"]) . "</td>"; |
|
189 | + // -- end sort |
|
190 | + |
|
191 | + echo "<table cols=6>"; |
|
192 | + echo "<tr>"; |
|
193 | + echo "<th colspan=6> Database $db_name </th>"; |
|
194 | + echo "</tr>"; |
|
195 | + |
|
196 | + echo "<tr>"; |
|
197 | + echo "<th><a href='dbinfo.php?sort=name&r=" . (!$r) . "'>Table </a></th>"; |
|
198 | + echo "<th><a href='dbinfo.php?sort=data_size&r=" . (!$r) . "'>Data Size</a></th>"; |
|
199 | + echo "<th><a href='dbinfo.php?sort=index_size&r=" . (!$r) . "'>Index Size</a></th>"; |
|
200 | + echo "<th><a href='dbinfo.php?sort=total_size&r=" . (!$r) . "'>Total Size</a></th>"; |
|
201 | + echo "<th><a href='dbinfo.php?sort=rows&r=" . (!$r) . "'>Total Rows</a></th>"; |
|
202 | + echo "<th><a href='dbinfo.php?sort=size_per_row&r=" . (!$r) . "'>Avg. Size per Row</a></th>"; |
|
203 | + echo "</tr>"; |
|
204 | + |
|
205 | + $i = 0; |
|
206 | + while ( list($key, $value) = each($file_sort) ) { |
|
207 | + $value = $file_list[$key]; |
|
208 | + echo "<tr>"; |
|
209 | + echo "<td align=left valign=top class=fieldname>" . $value["name"] . "</td>"; |
|
210 | + echo "<td align=left valign=top class=fieldname>" . size_format($value["data_size"]) . "</td>"; |
|
211 | + echo "<td align=left valign=top class=fieldname>" . size_format($value["index_size"]) . "</td>"; |
|
212 | + echo "<td align=left valign=top class=fieldname>" . size_format($value["total_size"]) . "</td>"; |
|
213 | 213 | echo "<td align=left valign=top class=fieldname>" . number_format($value["rows"]) . "</td>"; |
214 | 214 | echo "<td align=left valign=top class=fieldname>" . size_format($value["size_per_row"]) . "</td>"; |
215 | - echo "</tr>"; |
|
216 | - $i++; |
|
217 | - } |
|
215 | + echo "</tr>"; |
|
216 | + $i++; |
|
217 | + } |
|
218 | 218 | |
219 | - // Last record is just a summary |
|
220 | - $i = sizeof($db_rec)-1; |
|
221 | - echo "<tr>"; |
|
219 | + // Last record is just a summary |
|
220 | + $i = sizeof($db_rec)-1; |
|
221 | + echo "<tr>"; |
|
222 | 222 | echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
223 | 223 | echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
224 | 224 | echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
225 | 225 | echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
226 | 226 | echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
227 | 227 | echo "<th align=left></th>"; |
228 | - echo "</tr>"; |
|
228 | + echo "</tr>"; |
|
229 | 229 | |
230 | 230 | echo "</table>"; |
231 | 231 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | |
43 | 43 | // returns formatted data size |
44 | -function size_format($size){ |
|
44 | +function size_format($size) { |
|
45 | 45 | $retval = 0; |
46 | 46 | |
47 | 47 | $KB = 1024; |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | if ($size < $KB) { |
53 | 53 | $retval = $size; |
54 | 54 | } elseif (($size > $KB) && ($size < $MB)) { |
55 | - $retval = sprintf("%.0fK", ($size / $KB)); |
|
56 | - } elseif ( ($size >= $MB) && ($size < $GB)) { |
|
57 | - $retval = sprintf("%.2fMB", ($size / $MB)); |
|
58 | - } elseif ( ($size >= $GB) && ($size < $TB)) { |
|
59 | - $retval = sprintf("%.2fGB", ($size / $GB)); |
|
60 | - } elseif ( $size >= $TB ) { |
|
61 | - $retval = sprintf("%.2fTB", ($size / $TB)); |
|
55 | + $retval = sprintf("%.0fK", ($size/$KB)); |
|
56 | + } elseif (($size >= $MB) && ($size < $GB)) { |
|
57 | + $retval = sprintf("%.2fMB", ($size/$MB)); |
|
58 | + } elseif (($size >= $GB) && ($size < $TB)) { |
|
59 | + $retval = sprintf("%.2fGB", ($size/$GB)); |
|
60 | + } elseif ($size >= $TB) { |
|
61 | + $retval = sprintf("%.2fTB", ($size/$TB)); |
|
62 | 62 | } |
63 | 63 | return $retval; |
64 | 64 | } |
@@ -85,20 +85,20 @@ discard block |
||
85 | 85 | |
86 | 86 | $i = 0; |
87 | 87 | $db_rec = array(); |
88 | - while($myarr = _mysql_fetch_assoc($result)) { |
|
88 | + while ($myarr = _mysql_fetch_assoc($result)) { |
|
89 | 89 | |
90 | 90 | // sum grand totals |
91 | - $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
91 | + $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
92 | 92 | $gindex += $myarr["Index_length"]; |
93 | - $gdata += $myarr["Data_length"]; |
|
93 | + $gdata += $myarr["Data_length"]; |
|
94 | 94 | $grows += $myarr["Rows"]; |
95 | 95 | $gtotal += $total; |
96 | 96 | |
97 | - $db_rec[$i] = new DB_REC ($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"] ); |
|
97 | + $db_rec[$i] = new DB_REC($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"]); |
|
98 | 98 | $i++; |
99 | 99 | } |
100 | 100 | |
101 | - $db_rec[$i] = new DB_REC ("Total", $gdata, $gindex, $gtotal, $grows, "" ); |
|
101 | + $db_rec[$i] = new DB_REC("Total", $gdata, $gindex, $gtotal, $grows, ""); |
|
102 | 102 | |
103 | 103 | return $db_rec; |
104 | 104 | } |
@@ -122,25 +122,25 @@ discard block |
||
122 | 122 | echo "<th>Avg. Size per Row</th>"; |
123 | 123 | echo "</tr>"; |
124 | 124 | |
125 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
125 | + for ($i = 0; $i < sizeof($db_rec) - 1; $i++) { |
|
126 | 126 | echo "<tr>"; |
127 | - echo "<td align=left valign=top class=fieldname>" . $db_rec[$i]->name . "</td>"; |
|
128 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->data_size) . "</td>"; |
|
129 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->index_size) . "</td>"; |
|
130 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->total_size) . "</td>"; |
|
131 | - echo "<td align=left valign=top class=fieldname>" . number_format($db_rec[$i]->rows) . "</td>"; |
|
132 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->size_per_row) . "</td>"; |
|
127 | + echo "<td align=left valign=top class=fieldname>".$db_rec[$i]->name."</td>"; |
|
128 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->data_size)."</td>"; |
|
129 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->index_size)."</td>"; |
|
130 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->total_size)."</td>"; |
|
131 | + echo "<td align=left valign=top class=fieldname>".number_format($db_rec[$i]->rows)."</td>"; |
|
132 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->size_per_row)."</td>"; |
|
133 | 133 | echo "</tr>"; |
134 | 134 | } |
135 | 135 | |
136 | 136 | // Last record is just a summary |
137 | - $i = sizeof($db_rec)-1; |
|
137 | + $i = sizeof($db_rec) - 1; |
|
138 | 138 | echo "<tr>"; |
139 | - echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
|
140 | - echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
|
141 | - echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
|
142 | - echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
|
143 | - echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
|
139 | + echo "<th align=left>".$db_rec[$i]->name."</th>"; |
|
140 | + echo "<th align=left>".size_format($db_rec[$i]->data_size)."</th>"; |
|
141 | + echo "<th align=left>".size_format($db_rec[$i]->index_size)."</th>"; |
|
142 | + echo "<th align=left>".size_format($db_rec[$i]->total_size)."</th>"; |
|
143 | + echo "<th align=left>".number_format($db_rec[$i]->rows)."</th>"; |
|
144 | 144 | echo "<th align=left></th>"; |
145 | 145 | echo "</tr>"; |
146 | 146 | |
@@ -156,27 +156,27 @@ discard block |
||
156 | 156 | $file_list = array(); |
157 | 157 | $file_sort = array(); |
158 | 158 | |
159 | - $sort = get_str("sort", true); |
|
159 | + $sort = get_str("sort", true); |
|
160 | 160 | $r = get_str("r", true); |
161 | 161 | |
162 | 162 | // check if its empty |
163 | - if(empty($sort)) $sort = "name"; |
|
163 | + if (empty($sort)) $sort = "name"; |
|
164 | 164 | // check for allowed keys |
165 | - if ((strcmp($sort, "name")!=0) && |
|
166 | - (strcmp($sort, "data_size")!=0) && |
|
167 | - (strcmp($sort, "index_size")!=0) && |
|
168 | - (strcmp($sort, "total_size")!=0) && |
|
169 | - (strcmp($sort, "rows")!=0) && |
|
170 | - (strcmp($sort, "size_per_row")!=0)) |
|
165 | + if ((strcmp($sort, "name") != 0) && |
|
166 | + (strcmp($sort, "data_size") != 0) && |
|
167 | + (strcmp($sort, "index_size") != 0) && |
|
168 | + (strcmp($sort, "total_size") != 0) && |
|
169 | + (strcmp($sort, "rows") != 0) && |
|
170 | + (strcmp($sort, "size_per_row") != 0)) |
|
171 | 171 | $sort = "name"; |
172 | - if(empty($r)) $r=0; |
|
172 | + if (empty($r)) $r = 0; |
|
173 | 173 | |
174 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
174 | + for ($i = 0; $i < sizeof($db_rec) - 1; $i++) { |
|
175 | 175 | $file_details["name"] = $db_rec[$i]->name; |
176 | 176 | $file_details["data_size"] = $db_rec[$i]->data_size; |
177 | 177 | $file_details["index_size"] = $db_rec[$i]->index_size; |
178 | 178 | $file_details["total_size"] = $db_rec[$i]->total_size; |
179 | - $file_details["rows"] = $db_rec[$i]->rows; |
|
179 | + $file_details["rows"] = $db_rec[$i]->rows; |
|
180 | 180 | $file_details["size_per_row"] = $db_rec[$i]->size_per_row; |
181 | 181 | |
182 | 182 | $file_list[$i] = $file_details; |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $file_sort[$i] = $key; |
185 | 185 | } |
186 | 186 | |
187 | - if($r)arsort($file_sort); |
|
187 | + if ($r)arsort($file_sort); |
|
188 | 188 | else asort($file_sort); |
189 | 189 | // -- end sort |
190 | 190 | |
@@ -194,36 +194,36 @@ discard block |
||
194 | 194 | echo "</tr>"; |
195 | 195 | |
196 | 196 | echo "<tr>"; |
197 | - echo "<th><a href='dbinfo.php?sort=name&r=" . (!$r) . "'>Table </a></th>"; |
|
198 | - echo "<th><a href='dbinfo.php?sort=data_size&r=" . (!$r) . "'>Data Size</a></th>"; |
|
199 | - echo "<th><a href='dbinfo.php?sort=index_size&r=" . (!$r) . "'>Index Size</a></th>"; |
|
200 | - echo "<th><a href='dbinfo.php?sort=total_size&r=" . (!$r) . "'>Total Size</a></th>"; |
|
201 | - echo "<th><a href='dbinfo.php?sort=rows&r=" . (!$r) . "'>Total Rows</a></th>"; |
|
202 | - echo "<th><a href='dbinfo.php?sort=size_per_row&r=" . (!$r) . "'>Avg. Size per Row</a></th>"; |
|
197 | + echo "<th><a href='dbinfo.php?sort=name&r=".(!$r)."'>Table </a></th>"; |
|
198 | + echo "<th><a href='dbinfo.php?sort=data_size&r=".(!$r)."'>Data Size</a></th>"; |
|
199 | + echo "<th><a href='dbinfo.php?sort=index_size&r=".(!$r)."'>Index Size</a></th>"; |
|
200 | + echo "<th><a href='dbinfo.php?sort=total_size&r=".(!$r)."'>Total Size</a></th>"; |
|
201 | + echo "<th><a href='dbinfo.php?sort=rows&r=".(!$r)."'>Total Rows</a></th>"; |
|
202 | + echo "<th><a href='dbinfo.php?sort=size_per_row&r=".(!$r)."'>Avg. Size per Row</a></th>"; |
|
203 | 203 | echo "</tr>"; |
204 | 204 | |
205 | 205 | $i = 0; |
206 | - while ( list($key, $value) = each($file_sort) ) { |
|
206 | + while (list($key, $value) = each($file_sort)) { |
|
207 | 207 | $value = $file_list[$key]; |
208 | 208 | echo "<tr>"; |
209 | - echo "<td align=left valign=top class=fieldname>" . $value["name"] . "</td>"; |
|
210 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["data_size"]) . "</td>"; |
|
211 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["index_size"]) . "</td>"; |
|
212 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["total_size"]) . "</td>"; |
|
213 | - echo "<td align=left valign=top class=fieldname>" . number_format($value["rows"]) . "</td>"; |
|
214 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["size_per_row"]) . "</td>"; |
|
209 | + echo "<td align=left valign=top class=fieldname>".$value["name"]."</td>"; |
|
210 | + echo "<td align=left valign=top class=fieldname>".size_format($value["data_size"])."</td>"; |
|
211 | + echo "<td align=left valign=top class=fieldname>".size_format($value["index_size"])."</td>"; |
|
212 | + echo "<td align=left valign=top class=fieldname>".size_format($value["total_size"])."</td>"; |
|
213 | + echo "<td align=left valign=top class=fieldname>".number_format($value["rows"])."</td>"; |
|
214 | + echo "<td align=left valign=top class=fieldname>".size_format($value["size_per_row"])."</td>"; |
|
215 | 215 | echo "</tr>"; |
216 | 216 | $i++; |
217 | 217 | } |
218 | 218 | |
219 | 219 | // Last record is just a summary |
220 | - $i = sizeof($db_rec)-1; |
|
220 | + $i = sizeof($db_rec) - 1; |
|
221 | 221 | echo "<tr>"; |
222 | - echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
|
223 | - echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
|
224 | - echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
|
225 | - echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
|
226 | - echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
|
222 | + echo "<th align=left>".$db_rec[$i]->name."</th>"; |
|
223 | + echo "<th align=left>".size_format($db_rec[$i]->data_size)."</th>"; |
|
224 | + echo "<th align=left>".size_format($db_rec[$i]->index_size)."</th>"; |
|
225 | + echo "<th align=left>".size_format($db_rec[$i]->total_size)."</th>"; |
|
226 | + echo "<th align=left>".number_format($db_rec[$i]->rows)."</th>"; |
|
227 | 227 | echo "<th align=left></th>"; |
228 | 228 | echo "</tr>"; |
229 | 229 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | |
43 | 43 | // returns formatted data size |
44 | -function size_format($size){ |
|
44 | +function size_format($size) { |
|
45 | 45 | $retval = 0; |
46 | 46 | |
47 | 47 | $KB = 1024; |
@@ -65,8 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | |
67 | 67 | // returns the DB data structure as DB_REC |
68 | -function get_db_info($db_name) |
|
69 | -{ |
|
68 | +function get_db_info($db_name) { |
|
70 | 69 | // Carl grabbed this from the mysql.com boards http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html |
71 | 70 | $result = _mysql_query("SHOW TABLE STATUS FROM $db_name"); |
72 | 71 | |
@@ -105,8 +104,7 @@ discard block |
||
105 | 104 | |
106 | 105 | |
107 | 106 | // shows the plain db structure |
108 | -function show_db_info($db_name, $db_rec) |
|
109 | -{ |
|
107 | +function show_db_info($db_name, $db_rec) { |
|
110 | 108 | |
111 | 109 | echo "<table cols=6>"; |
112 | 110 | echo "<tr>"; |
@@ -122,7 +120,7 @@ discard block |
||
122 | 120 | echo "<th>Avg. Size per Row</th>"; |
123 | 121 | echo "</tr>"; |
124 | 122 | |
125 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
123 | + for ($i = 0; $i < sizeof($db_rec)-1; $i++) { |
|
126 | 124 | echo "<tr>"; |
127 | 125 | echo "<td align=left valign=top class=fieldname>" . $db_rec[$i]->name . "</td>"; |
128 | 126 | echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->data_size) . "</td>"; |
@@ -150,8 +148,7 @@ discard block |
||
150 | 148 | |
151 | 149 | |
152 | 150 | // NB: same as show_db_info but with sortable cloumns |
153 | -function sort_db_info($db_name, $db_rec) |
|
154 | -{ |
|
151 | +function sort_db_info($db_name, $db_rec) { |
|
155 | 152 | // sort |
156 | 153 | $file_list = array(); |
157 | 154 | $file_sort = array(); |
@@ -171,7 +168,7 @@ discard block |
||
171 | 168 | $sort = "name"; |
172 | 169 | if(empty($r)) $r=0; |
173 | 170 | |
174 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
171 | + for ($i = 0; $i < sizeof($db_rec)-1; $i++) { |
|
175 | 172 | $file_details["name"] = $db_rec[$i]->name; |
176 | 173 | $file_details["data_size"] = $db_rec[$i]->data_size; |
177 | 174 | $file_details["index_size"] = $db_rec[$i]->index_size; |