class SupernovaGenerator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/help/tests/modules/help_test/src/SupernovaGenerator.php \Drupal\help_test\SupernovaGenerator
Implements a URL generator which always thrown an exception.
Hierarchy
- class \Drupal\help_test\SupernovaGenerator implements UrlGeneratorInterface
Expanded class hierarchy of SupernovaGenerator
1 file declares its use of SupernovaGenerator
- HelpEmptyPageTest.php in core/
modules/ help/ src/ Tests/ HelpEmptyPageTest.php - Contains \Drupal\help\Tests\HelpEmptyPageTest.
File
- core/
modules/ help/ tests/ modules/ help_test/ src/ SupernovaGenerator.php, line 16 - Contains \Drupal\help_test\SupernovaGenerator.
Namespace
Drupal\help_testView source
class SupernovaGenerator implements UrlGeneratorInterface {
/**
* {@inheritdoc}
*/
public function setContext(RequestContext $context) {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function getContext() {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function getPathFromRoute($name, $parameters = array()) {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function generateFromRoute($name, $parameters = array(), $options = array(), $collect_bubbleable_metadata = FALSE) {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function supports($name) {
throw new \Exception();
}
/**
* {@inheritdoc}
*/
public function getRouteDebugMessage($name, array $parameters = array()) {
throw new \Exception();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SupernovaGenerator:: |
public | function |
Generates a URL or path for a specific route based on the given parameters. Overrides UrlGeneratorInterface:: |
|
SupernovaGenerator:: |
public | function |
Generates a URL or path for a specific route based on the given parameters. Overrides UrlGeneratorInterface:: |
|
SupernovaGenerator:: |
public | function |
Gets the request context. Overrides RequestContextAwareInterface:: |
|
SupernovaGenerator:: |
public | function |
Gets the internal path (system path) for a route. Overrides UrlGeneratorInterface:: |
|
SupernovaGenerator:: |
public | function |
Convert a route identifier (name, content object etc) into a string
usable for logging and other debug/error messages Overrides VersatileGeneratorInterface:: |
|
SupernovaGenerator:: |
public | function |
Sets the request context. Overrides RequestContextAwareInterface:: |
|
SupernovaGenerator:: |
public | function |
Whether this generator supports the supplied $name. Overrides VersatileGeneratorInterface:: |
|
UrlGeneratorInterface:: |
constant | Generates an absolute path, e.g. "/dir/file". | ||
UrlGeneratorInterface:: |
constant | Generates an absolute URL, e.g. "http://example.com/dir/file". | ||
UrlGeneratorInterface:: |
constant | Generates a network path, e.g. "//example.com/dir/file". Such reference reuses the current scheme but specifies the host. | ||
UrlGeneratorInterface:: |
constant | Generates a relative path based on the current request path, e.g. "../parent-file". |