function SessionStreamWrapper::unlink

Same name in other branches
  1. 3.x modules/stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php \Drupal\stream_wrapper_example\StreamWrapper\SessionStreamWrapper::unlink()
  2. 4.0.x modules/stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php \Drupal\stream_wrapper_example\StreamWrapper\SessionStreamWrapper::unlink()

Support for unlink().

Parameters

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

Return value

bool TRUE if resource was successfully deleted.

See also

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

File

stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php, line 608

Class

SessionStreamWrapper
Example stream wrapper class to handle session:// streams.

Namespace

Drupal\stream_wrapper_example\StreamWrapper

Code

public function unlink($uri) {
    $path = $this->getLocalPath($uri);
    $this->sessionHelper
        ->clearPath($path);
    return TRUE;
}