RouteBuilderInterface::rebuild

public RouteBuilderInterface::rebuild() Rebuilds the route information and dumps it. Return value bool Returns TRUE if the rebuild succeeds, FALSE otherwise. File core/lib/Drupal/Core/Routing/RouteBuilderInterface.php, line 30 Class RouteBuilderInterface Rebuilds the route information and dumps it. Namespace Drupal\Core\Routing Code public function rebuild();

RoutePreloader::onAlterRoutes

public RoutePreloader::onAlterRoutes(RouteBuildEvent $event) Alters existing routes for a specific collection. Parameters \Drupal\Core\Routing\RouteBuildEvent $event: The route build event. File core/lib/Drupal/Core/Routing/RoutePreloader.php, line 99 Class RoutePreloader Defines a class which preloads non-admin routes. Namespace Drupal\Core\Routing Code public function onAlterRoutes(RouteBuildEvent $event) { $collection = $event->getRouteCollection(); foreach ($collection->

ViewsFormInterface::getForm

public ViewsFormInterface::getForm(ViewEntityInterface $view, $display_id, $js) Creates a new instance of this form. @todo When https://www.drupal.org/node/1843224 is in, this will return \Drupal\Core\Ajax\AjaxResponse instead of the array of AJAX commands. Parameters \Drupal\views\ViewEntityInterface $view: The view being edited. string|null $display_id: The display ID being edited, or NULL to load the first available display. string $js: If this is an AJAX form, it will be the string 'ajax'.

PhpStorageInterface::exists

public PhpStorageInterface::exists($name) Checks whether the PHP code exists in storage. Parameters string $name: The virtual file name. Can be a relative path. Return value bool TRUE if the virtual file exists, FALSE otherwise. File core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php, line 25 Class PhpStorageInterface Stores and loads PHP code. Namespace Drupal\Component\PhpStorage Code public function exists($name);

Block::$admin_label

The administrative label of the block. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/lib/Drupal/Core/Block/Annotation/Block.php, line 30 Class Block Defines a Block annotation object. Namespace Drupal\Core\Block\Annotation Code public $admin_label = '';

filter_get_formats_by_role

filter_get_formats_by_role($rid) Retrieves a list of text formats that are allowed for a given role. Parameters string $rid: The user role ID to retrieve text formats for. Return value \Drupal\filter\FilterFormatInterface[] An array of text format objects that are allowed for the role, keyed by the text format ID and ordered by weight. File core/modules/filter/filter.module, line 168 Framework for handling the filtering of content. Code function filter_get_formats_by_role($rid) { $formats

RouteMatch::getParameters

public RouteMatch::getParameters() Returns the bag of all processed route parameters. Raw URL parameters are processed by the parameter conversion system, which does operations such as converting entity ID parameters to fully-loaded entities. For example, the path node/12345 would have a raw node ID parameter value of 12345, while the processed parameter value would be the corresponding loaded node object. Return value \Symfony\Component\HttpFoundation\ParameterBag The parameter bag. Overrides

RestResource::$id

The resource plugin ID. Type: string File core/modules/rest/src/Annotation/RestResource.php, line 30 Class RestResource Defines a REST resource annotation object. Namespace Drupal\rest\Annotation Code public $id;

PhpBackend::$bin

Type: string File core/lib/Drupal/Core/Cache/PhpBackend.php, line 26 Class PhpBackend Defines a PHP cache implementation. Namespace Drupal\Core\Cache Code protected $bin;

EditorInterface::setImageUploadSettings

public EditorInterface::setImageUploadSettings(array $image_upload) Sets the image upload settings. Parameters array $image_upload: The structured array containing image upload settings. Return value $this File core/modules/editor/src/EditorInterface.php, line 83 Class EditorInterface Provides an interface defining a text editor entity. Namespace Drupal\editor Code public function setImageUploadSettings(array $image_upload);