Search for all
| Title | Object type | File name | Summary |
|---|---|---|---|
| DistributionProfileTranslationTest::setUpLanguage | function | core/ |
Installer step: Select language. |
| DistributionProfileTranslationTest::setUpProfile | function | core/ |
Installer step: Select installation profile. |
| DistributionProfileTranslationTest::setUpSettings | function | core/ |
Installer step: Configure settings. |
| DistributionProfileTranslationTest::testInstalled | function | core/ |
Confirms that the installation succeeded. |
| divider.css | file | core/ |
/* * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/3084859 * @preserve */ /** * Divider. */ .divider { height: 1px; background-color: rgba(142, 146, 156, 0.5); } |
| divider.pcss.css | file | core/ |
/** * Divider. */ @import "../base/variables.pcss.css"; .divider { height: 1px; background-color: var(--color-divider); } |
| DocParser | class | core/ |
A parser for docblock annotations. |
| DocParser.php | file | core/ |
This class is a near-copy of Doctrine\Common\Annotations\DocParser, which is part of the Doctrine project: <http://www.doctrine-project.org>. It was copied from version 1.2.7. |
| DocParser::$annotationMetadata | property | core/ |
Hash-map for caching annotation metadata. |
| DocParser::$classExists | property | core/ |
This hashmap is used internally to cache results of class_exists() look-ups. |
| DocParser::$classIdentifiers | property | core/ |
An array of all valid tokens for a class name. |
| DocParser::$context | property | core/ |
|
| DocParser::$ignoredAnnotationNames | property | core/ |
A list with annotations that are not causing exceptions when not resolved to an annotation class. |
| DocParser::$ignoreNotImportedAnnotations | property | core/ |
Whether annotations that have not been imported should be ignored. |
| DocParser::$imports | property | core/ |
Hashmap containing all use-statements that are to be used when parsing the given doc block. |
| DocParser::$isNestedAnnotation | property | core/ |
Flag to control if the current annotation is nested or not. |
| DocParser::$lexer | property | core/ |
The lexer. |
| DocParser::$metadataParser | property | core/ |
Doc parser used to collect annotation target. |
| DocParser::$namespaces | property | core/ |
An array of default namespaces if operating in simple mode. |
| DocParser::$target | property | core/ |
Current target context. |
| DocParser::$typeMap | property | core/ |
Hash-map for handle types declaration. |
| DocParser::addNamespace | function | core/ |
Sets the default namespaces. |
| DocParser::Annotation | function | core/ |
Annotation ::= "@" AnnotationName MethodCall AnnotationName ::= QualifiedName | SimpleName QualifiedName ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName NameSpacePart ::= identifier | null | false |… |
| DocParser::Annotations | function | core/ |
Annotations ::= Annotation {[ "*" ]* [Annotation]}* |
| DocParser::ArrayEntry | function | core/ |
ArrayEntry ::= Value | KeyValuePair KeyValuePair ::= Key ("=" | ":") PlainValue | Constant Key ::= string | integer | Constant |
| DocParser::Arrayx | function | core/ |
Array ::= "{" ArrayEntry {"," ArrayEntry}* [","] "}" |
| DocParser::classExists | function | core/ |
Attempts to check if a class exists or not. This never goes through the PHP autoloading mechanism but uses the {@link AnnotationRegistry} to load classes. |
| DocParser::collectAnnotationMetadata | function | core/ |
Collects parsing metadata for a given annotation class |
| DocParser::collectAttributeTypeMetadata | function | core/ |
Collects parsing metadata for a given attribute. |
| DocParser::Constant | function | core/ |
Constant ::= integer | string | float | boolean |
| DocParser::FieldAssignment | function | core/ |
FieldAssignment ::= FieldName "=" PlainValue FieldName ::= identifier |
| DocParser::findInitialTokenPosition | function | core/ |
Finds the first valid annotation |
| DocParser::Identifier | function | core/ |
Identifier ::= string |
| DocParser::match | function | core/ |
Attempts to match the given token with the current lookahead token. If they match, updates the lookahead token; otherwise raises a syntax error. |
| DocParser::matchAny | function | core/ |
Attempts to match the current lookahead token with any of the given tokens. |
| DocParser::MethodCall | function | core/ |
MethodCall ::= ["(" [Values] ")"] |
| DocParser::parse | function | core/ |
Parses the given docblock string for annotations. |
| DocParser::PlainValue | function | core/ |
PlainValue ::= integer | string | float | boolean | Array | Annotation |
| DocParser::setIgnoredAnnotationNames | function | core/ |
Sets the annotation names that are ignored during the parsing process. |
| DocParser::setIgnoreNotImportedAnnotations | function | core/ |
Sets ignore on not-imported annotations. |
| DocParser::setImports | function | core/ |
Sets the imports. |
| DocParser::setTarget | function | core/ |
Sets current target context as bitmask. |
| DocParser::syntaxError | function | core/ |
Generates a new syntax error. |
| DocParser::Value | function | core/ |
Value ::= PlainValue | FieldAssignment |
| DocParser::Values | function | core/ |
Values ::= Array | Value {"," Value}* [","] |
| DocParser::__construct | function | core/ |
Constructs a new DocParser. |
| DocParserIgnoredClassesTest | class | core/ |
@coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser[[api-linebreak]] |
| DocParserIgnoredClassesTest.php | file | core/ |
|
| DocParserIgnoredClassesTest::testIgnoredAnnotationSkippedBeforeReflection | function | core/ |
Ensure annotations can be ignored when namespaces are present. |
| DocParserTest | class | core/ |
@coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser[[api-linebreak]] |
Pagination
- Previous page
- Page 414
- Next page
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.