Server IP : 127.0.0.2 / Your IP : 18.119.132.21 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/templates/table/structure/ |
Upload File : |
<div id="tablestatistics"> <?php $odd_row = false; ?> <fieldset> <legend><?php echo __('Information'); ?></legend> <a id="showusage"></a> <?php if (! $tbl_is_view && ! $db_is_system_schema): ?> <table id="tablespaceusage" class="data"> <caption class="tblHeaders"><?php echo __('Space usage'); ?></caption> <tbody> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Data'); ?></th> <td class="value"><?php echo $data_size; ?></td> <td class="unit"><?php echo $data_unit; ?></td> </tr> <?php if (isset($index_size)): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Index'); ?></th> <td class="value"><?php echo $index_size; ?></td> <td class="unit"><?php echo $index_unit; ?></td> </tr> <?php endif; ?> <?php if (isset($free_size)): ?> <tr class="<?php echo ((!$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Overhead'); ?></th> <td class="value"><?php echo $free_size; ?></td> <td class="unit"><?php echo $free_unit; ?></td> </tr> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Effective'); ?></th> <td class="value"><?php echo $effect_size; ?></td> <td class="unit"><?php echo $effect_unit; ?></td> </tr> <?php endif; ?> <?php if (isset($tot_size) && $mergetable == false): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Total'); ?></th> <td class="value"><?php echo $tot_size; ?></td> <td class="unit"><?php echo $tot_unit; ?></td> </tr> <?php endif; ?> <!-- Optimize link if overhead --> <?php if (isset($free_size) && !PMA_DRIZZLE && ($tbl_storage_engine == 'MYISAM' || $tbl_storage_engine == 'ARIA' || $tbl_storage_engine == 'MARIA' || $tbl_storage_engine == 'BDB')): ?> <tr class="tblFooters"> <td colspan="3" class="center"> <a href="sql.php<?php echo $url_query; ?>&pos=0&sql_query=<?php echo urlencode( 'OPTIMIZE TABLE ' . PMA_Util::backquote($GLOBALS['table'])); ?>"> <?php echo PMA_Util::getIcon('b_tbloptimize.png', __('Optimize table')); ?> </a> </td> </tr> <?php endif; ?> </tbody> </table> <?php endif; ?> <?php echo PMA\Template::get('table/structure/row_stats_table')->render( array( 'showtable' => $showtable, 'tbl_collation' => $tbl_collation, 'is_innodb' => $is_innodb, 'mergetable' => $mergetable, 'avg_size' => (isset ($avg_size) ? $avg_size : ''), 'avg_unit' => (isset ($avg_unit) ? $avg_unit : '') ) ); ?> </fieldset> </div>