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

Breadcrumb

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

function LocalReadOnlyStream::rename

Support for rename().

The file will not be renamed as this is a read-only stream wrapper.

Parameters

string $from_uri: The uri to the file to rename.

string $to_uri: The new uri for file.

Return value

bool FALSE as file will never be renamed.

Overrides LocalStream::rename

See also

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

File

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

Class

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

Namespace

Drupal\Core\StreamWrapper

Code

public function rename($from_uri, $to_uri) {
    trigger_error('rename() not supported for read-only stream wrappers', E_USER_WARNING);
    return FALSE;
}

API Navigation

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