| Versionen | |
|---|---|
| drupal6 – drupal7 | upload_space_used($uid) |
Determine how much disk space is occupied by a user's uploaded files.
$uid The integer user id of a user.
The amount of disk space used by the user in bytes.
modules/
<?php
function upload_space_used($uid) {
return file_space_used($uid);
}
?>
Kommentare
Kommentar hinzufügen