2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
14 * Does the common work
16 require_once './libraries/server_common.inc.php';
20 * Kills a selected process
23 if (PMA_DBI_try_query('KILL ' . $kill . ';')) {
24 $message = sprintf($strThreadSuccessfullyKilled, $kill);
26 $message = sprintf($strCouldNotKill, $kill);
34 require './libraries/server_links.inc.php';
38 * Displays the sub-page heading
41 . ($cfg['MainPageIconic'] ?
'<img class="icon" src="' . $pmaThemeImage . 's_process.png" width="16" height="16" alt="" />' : '')
42 . $strProcesslist . "\n"
49 $sql_query = 'SHOW' . (empty($full) ?
'' : ' FULL') . ' PROCESSLIST';
50 $result = PMA_DBI_query($sql_query);
52 PMA_showMessage($GLOBALS['strSuccess']);
59 <table id
="tableprocesslist" class="data">
61 <tr
><td
><a href
="./server_processlist.php?<?php echo $url_query . (empty($full) ? '&full=1' : ''); ?>"
62 title
="<?php echo empty($full) ? $strShowFullQueries : $strTruncateQueries; ?>">
63 <img src
="<?php echo $pmaThemeImage . 's_' . (empty($full) ? 'full' : 'partial'); ?>text.png"
64 width
="50" height
="20" alt
="<?php echo empty($full) ? $strShowFullQueries : $strTruncateQueries; ?>" />
66 <th
><?php
echo $strId; ?
></th
>
67 <th
><?php
echo $strUser; ?
></th
>
68 <th
><?php
echo $strHost; ?
></th
>
69 <th
><?php
echo $strDatabase; ?
></th
>
70 <th
><?php
echo $strCommand; ?
></th
>
71 <th
><?php
echo $strTime; ?
></th
>
72 <th
><?php
echo $strStatus; ?
></th
>
73 <th
><?php
echo $strSQLQuery; ?
></th
>
79 while($process = PMA_DBI_fetch_assoc($result)) {
81 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
82 <td
><a href
="./server_processlist.php?<?php echo $url_query . '&kill=' . $process['Id']; ?>"><?php
echo $strKill; ?
></a
></td
>
83 <td
class="value"><?php
echo $process['Id']; ?
></td
>
84 <td
><?php
echo $process['User']; ?
></td
>
85 <td
><?php
echo $process['Host']; ?
></td
>
86 <td
><?php
echo ((! isset($process['db']) ||
! strlen($process['db'])) ?
'<i>' . $strNone . '</i>' : $process['db']); ?
></td
>
87 <td
><?php
echo $process['Command']; ?
></td
>
88 <td
class="value"><?php
echo $process['Time']; ?
></td
>
89 <td
><?php
echo (empty($process['State']) ?
'---' : $process['State']); ?
></td
>
90 <td
><?php
echo (empty($process['Info']) ?
'---' : PMA_SQP_formatHtml(PMA_SQP_parse($process['Info']))); ?
></td
>
93 $odd_row = ! $odd_row;
103 require_once './libraries/footer.inc.php';