LocalTaskDefault::getActive

public LocalTaskDefault::getActive() Gets the active status. Return value bool TRUE if the local task is active, FALSE otherwise. Overrides LocalTaskInterface::getActive See also \Drupal\system\Plugin\MenuLocalTaskInterface::setActive() File core/lib/Drupal/Core/Menu/LocalTaskDefault.php, line 126 Class LocalTaskDefault Default object used for LocalTaskPlugins. Namespace Drupal\Core\Menu Code public function getActive() { return $this->active; }

LocalTaskDefault::$routeProvider

The route provider to load routes by name. Type: \Drupal\Core\Routing\RouteProviderInterface File core/lib/Drupal/Core/Menu/LocalTaskDefault.php, line 24 Class LocalTaskDefault Default object used for LocalTaskPlugins. Namespace Drupal\Core\Menu Code protected $routeProvider;

LocalTaskDefault::$active

TRUE if this plugin is forced active for options attributes. Type: bool File core/lib/Drupal/Core/Menu/LocalTaskDefault.php, line 31 Class LocalTaskDefault Default object used for LocalTaskPlugins. Namespace Drupal\Core\Menu Code protected $active = FALSE;

LocalTaskDefault

Default object used for LocalTaskPlugins. Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Menu\LocalTaskDefault implements CacheableDependencyInterface, LocalTaskInterface uses DependencySerializationTrait File core/lib/Drupal/Core/Menu/LocalTaskDefault.php, line 15 Namespace Drupal\Core\Menu Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected

LocalStream::url_stat

public LocalStream::url_stat($uri, $flags) Support for stat(). Parameters string $uri: A string containing the URI to get information about. int $flags: A bit mask of STREAM_URL_STAT_LINK and STREAM_URL_STAT_QUIET. Return value array An array with file status, or FALSE in case of an error - see fstat() for a description of this array. Overrides PhpStreamWrapperInterface::url_stat See also http://php.net/manual/streamwrapper.url-stat.php File core/lib/Drupal/Core/StreamWrapper/LocalStream.php

LocalStream::unlink

public LocalStream::unlink($uri) 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/streamwrapper.unlink.php File core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 375 Class LocalStream Defines a Drupal stream wrapper base class for local files. Namespace Drupal\Core\StreamWrapper Code public

LocalStream::stream_write

public LocalStream::stream_write($data) Support for fwrite(), file_put_contents() etc. Parameters string $data: The string to be written. Return value int The number of bytes written. Overrides PhpStreamWrapperInterface::stream_write See also http://php.net/manual/streamwrapper.stream-write.php File core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 225 Class LocalStream Defines a Drupal stream wrapper base class for local files. Namespace Drupal\Core\StreamWrapper Code public

LocalStream::stream_truncate

public LocalStream::stream_truncate($new_size) Truncate stream. Will respond to truncation; e.g., through ftruncate(). Parameters int $new_size: The new size. Return value bool TRUE on success, FALSE otherwise. Overrides PhpStreamWrapperInterface::stream_truncate File core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 360 Class LocalStream Defines a Drupal stream wrapper base class for local files. Namespace Drupal\Core\StreamWrapper Code public function stream_truncate($new_si

LocalStream::stream_tell

public LocalStream::stream_tell() Support for ftell(). Return value bool The current offset in bytes from the beginning of file. Overrides PhpStreamWrapperInterface::stream_tell See also http://php.net/manual/streamwrapper.stream-tell.php File core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 270 Class LocalStream Defines a Drupal stream wrapper base class for local files. Namespace Drupal\Core\StreamWrapper Code public function stream_tell() { return ftell($this->handle)

LocalStream::stream_stat

public LocalStream::stream_stat() Support for fstat(). Return value bool An array with file status, or FALSE in case of an error - see fstat() for a description of this array. Overrides PhpStreamWrapperInterface::stream_stat See also http://php.net/manual/streamwrapper.stream-stat.php File core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 283 Class LocalStream Defines a Drupal stream wrapper base class for local files. Namespace Drupal\Core\StreamWrapper Code public function s