summaryrefslogtreecommitdiffstats
path: root/editors/ckeditor_4_4/uploader/progress.php
blob: be48ccf32d7a9b353254f2ee1f4b37ce377cf859 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
session_start();

$key = ini_get("session.upload_progress.prefix") . "editorSlika";
if (!empty($_SESSION[$key])) {
    $current = $_SESSION[$key]["bytes_processed"];
    $total = $_SESSION[$key]["content_length"];
    echo $current < $total ? ceil($current / $total * 100) : 100;
}
else {
    echo 100;
}