Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. LocalReadOnlyStream.php

function LocalReadOnlyStream::unlink

Support for unlink().

The file will not be deleted from the stream as this is a read-only stream wrapper.

Parameters

string $uri: A string containing the uri to the resource to delete.

Return value

bool TRUE so that file_delete() will remove db reference to file. File is not actually deleted.

Overrides LocalStream::unlink

See also

http://php.net/manual/streamwrapper.unlink.php

File

core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php, line 139

Class

LocalReadOnlyStream
Defines a read-only Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

public function unlink($uri) {
    trigger_error('unlink() not supported for read-only stream wrappers', E_USER_WARNING);
    return TRUE;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal