Add docs.

This commit is contained in:
Michal Čihař
2010-04-29 14:10:11 +02:00
parent a5750bb3bf
commit e4a399fc6a
3 changed files with 27 additions and 12 deletions

View File

@@ -12,6 +12,11 @@ if (! defined('PHPMYADMIN')) {
$ID_KEY = 'APC_UPLOAD_PROGRESS';
/**
* Returns upload status.
*
* This is implementation for APC extension.
*/
function PMA_getUploadStatus($id) {
global $SESSION_KEY;
global $ID_KEY;

View File

@@ -12,6 +12,11 @@ if (! defined('PHPMYADMIN')) {
$ID_KEY = 'noplugin';
/**
* Returns upload status.
*
* This is implementation when no webserver support exists, so it returns just zeroes.
*/
function PMA_getUploadStatus($id) {
global $SESSION_KEY;
global $ID_KEY;

View File

@@ -11,6 +11,11 @@ if (! defined('PHPMYADMIN')) {
$ID_KEY = "UPLOAD_IDENTIFIER";
/**
* Returns upload status.
*
* This is implementation for uploadprogress extension.
*/
function PMA_getUploadStatus($id) {
global $SESSION_KEY;
global $ID_KEY;