You are here

public function SessionStreamWrapper::unlink in Examples for Developers 3.x

Same name and namespace in other branches
  1. 8 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.

Overrides PhpStreamWrapperInterface::unlink

See also

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

File

modules/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;
}