YoutubeDirective
extends BaseDirective
in package
This directive is used to embed a youtube video in the document.
Basic usage
.. youtube:: dQw4w9WgXcQ
Options:
- string title The title of the video
- int width The width of the video, default is 560
- int height The height of the video, default is 315
- string allow The allow attribute of the iframe, default is 'encrypted-media; picture-in-picture; web-share'
- bool allowfullscreen Whether the video should be allowed to go fullscreen, default is true
Attributes
- #[Directive]
- $name: 'youtube'
- #[Option]
- 'width'
- $type: \phpDocumentor\Guides\RestructuredText\Directives\OptionType::Integer
- $default: 560
- $description: 'Width of the video'
- #[Option]
- 'title'
- $type: \phpDocumentor\Guides\RestructuredText\Directives\OptionType::String
- $description: 'Title of the video'
- #[Option]
- 'height'
- $type: \phpDocumentor\Guides\RestructuredText\Directives\OptionType::Integer
- $default: 315
- $description: 'Height of the video'
- #[Option]
- 'allow'
- $type: \phpDocumentor\Guides\RestructuredText\Directives\OptionType::String
- $default: 'encrypted-media; picture-in-picture; web-share'
- $description: 'Allow attribute of the iframe'
- #[Option]
- 'allowfullscreen'
- $type: \phpDocumentor\Guides\RestructuredText\Directives\OptionType::Boolean
- $default: true
- $description: 'Whether the video should be allowed to go fullscreen'
Table of Contents
Methods
- createNode() : EmbeddedFrame
- getAliases() : array<string|int, string>
- Allow a directive to be registered under multiple names.
- getName() : string
- Get the directive name
- process() : EmbeddedFrame
- This is the function called by the parser to process the directive, it can be overloaded to do anything with the document, like tweaking nodes or change the parser context
- processNode() : Node
- This can be overloaded to write a directive that just create one node for the document, which is common
- optionsToArray() : array<string, scalar|null>
- readAllOptions() : array<string, scalar|array<string|int, scalar>|null>
- readOption() : mixed
- Gets an option value from a directive based on attribute configuration.
Methods
createNode()
public
createNode(DirectiveNode $directiveNode) : EmbeddedFrame
Parameters
- $directiveNode : DirectiveNode
Return values
EmbeddedFramegetAliases()
Allow a directive to be registered under multiple names.
public
getAliases() : array<string|int, string>
Aliases can be used for directives whose name has been deprecated or allows for multiple spellings.
Return values
array<string|int, string>getName()
Get the directive name
public
getName() : string
Return values
stringprocess()
This is the function called by the parser to process the directive, it can be overloaded to do anything with the document, like tweaking nodes or change the parser context
public
process(BlockContext $blockContext, Directive $directive) : EmbeddedFrame
The node that directly follows the directive is also passed to it
Parameters
- $blockContext : BlockContext
-
the current document context with the content of the directive
- $directive : Directive
-
parsed directive containing options and variable
Return values
EmbeddedFrameprocessNode()
This can be overloaded to write a directive that just create one node for the document, which is common
public
processNode(BlockContext $blockContext, Directive $directive) : Node
The arguments are the same that process
Parameters
- $blockContext : BlockContext
- $directive : Directive
Return values
NodeoptionsToArray()
protected
optionsToArray(array<string|int, DirectiveOption> $options) : array<string, scalar|null>
Parameters
- $options : array<string|int, DirectiveOption>
Return values
array<string, scalar|null>readAllOptions()
protected
final readAllOptions(Directive $directive) : array<string, scalar|array<string|int, scalar>|null>
Parameters
- $directive : Directive
Return values
array<string, scalar|array<string|int, scalar>|null>readOption()
Gets an option value from a directive based on attribute configuration.
protected
final readOption(Directive $directive, string $optionName) : mixed
Looks up the option in the directive and returns its value converted to the appropriate type based on the Option attribute defined on this directive class. If the option is not present in the directive, returns the default value from the attribute.
Parameters
- $directive : Directive
-
The directive containing the options
- $optionName : string
-
The name of the option to retrieve
Return values
mixed —The option value converted to the appropriate type, or the default value