FileStorageInterface.php

Same filename and directory in other branches
  1. 8.9.x core/modules/file/src/FileStorageInterface.php
  2. 10 core/modules/file/src/FileStorageInterface.php
  3. 11.x core/modules/file/src/FileStorageInterface.php

Namespace

Drupal\file

File

core/modules/file/src/FileStorageInterface.php

View source
<?php

namespace Drupal\file;

use Drupal\Core\Entity\ContentEntityStorageInterface;

/**
 * Defines an interface for file entity storage classes.
 */
interface FileStorageInterface extends ContentEntityStorageInterface {
    
    /**
     * Determines total disk space used by a single user or the whole filesystem.
     *
     * @param int $uid
     *   Optional. A user id, specifying NULL returns the total space used by all
     *   non-temporary files.
     * @param int $status
     *   (Optional) The file status to consider. The default is to only
     *   consider files in status FileInterface::STATUS_PERMANENT.
     *
     * @return int
     *   An integer containing the number of bytes used.
     */
    public function spaceUsed($uid = NULL, $status = FileInterface::STATUS_PERMANENT);

}

Interfaces

Title Deprecated Summary
FileStorageInterface Defines an interface for file entity storage classes.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.