Results
05.02.2021
simple_page_manager 1.0.0-alpha1 ::
simple_page_manager_linkit/src/Plugin/Linkit/Substitution/UriCallback.php
11 12 13 14 15 16 17 18 | * A substitution plugin for the canonical URL of an entity using uri_callback. * * @Substitution( * id = "uri_callback" , * label = @Translation( "URI Callback" ), * ) */ class UriCallback extends PluginBase implements SubstitutionInterface { |
12.06.2020
linkit 8.x-5.0-beta11 ::
src/Plugin/Linkit/Substitution/Canonical.php
11 12 13 14 15 16 17 18 | * A substitution plugin for the canonical URL of an entity. * * @Substitution( * id = "canonical" , * label = @Translation( "Canonical URL" ), * ) */ class Canonical extends PluginBase implements SubstitutionInterface { |
12.06.2020
linkit 8.x-5.0-beta11 ::
src/Plugin/Linkit/Substitution/Media.php
15 16 17 18 19 20 21 22 | * A substitution plugin for the URL to a file. * * @Substitution( * id = "media" , * label = @Translation( "Direct URL to media file entity" ), * ) */ class Media extends PluginBase implements SubstitutionInterface, ContainerFactoryPluginInterface { |
12.06.2020
linkit 8.x-5.0-beta11 ::
src/Plugin/Linkit/Substitution/File.php
12 13 14 15 16 17 18 19 | * A substitution plugin for the URL to a file. * * @Substitution( * id = "file" , * label = @Translation( "Direct File URL" ), * ) */ class File extends PluginBase implements SubstitutionInterface { |
08.10.2021
linkit_custom_link 1.0.0-alpha1 ::
src/Plugin/Linkit/Substitution/LinkitCustomLinkSubstitution.php
12 13 14 15 16 17 18 19 | * A substitution plugin for the URL of a view. * * @Substitution( * id = "linkit_custom_link" , * label = @Translation( "Linkit custom link URL" ), * ) */ class LinkitCustomLinkSubstitution extends PluginBase implements SubstitutionInterface { |
23.07.2020
linkit_media_library 1.0.1 ::
tests/modules/linkit_media_library_test/src/Plugin/Linkit/Substitution/TestSubstitutionPlugin.php
8 9 10 11 12 13 14 15 | * A test substitution plugin. * * @Substitution( * id = "test_substitution_asset" , * label = @Translation( "Test Substitution Plugin" ), * ) */ class TestSubstitutionPlugin extends Media { |
16.10.2020
media_acquiadam 8.x-1.46 ::
src/Plugin/Linkit/Substitution/DAMAsset.php
19 20 21 22 23 24 25 26 | * actual file reference field. * * @Substitution( * id = "dam_asset" , * label = @Translation( "Direct URL to DAM file entity" ), * ) */ class DAMAsset extends Media { |
14.04.2020
media_entity_download 8.x-2.0 ::
src/Plugin/Linkit/Substitution/MediaDownload.php
17 18 19 20 21 22 23 24 | * A substitution plugin for a direct download link to a file. * * @Substitution( * id = "media_download" , * label = @Translation( "Direct download URL for media item (Forcing a Save as... browser dialog)" ), * ) */ class MediaDownload extends PluginBase implements SubstitutionInterface, ContainerFactoryPluginInterface { |
14.04.2020
media_entity_download 8.x-2.0 ::
src/Plugin/Linkit/Substitution/MediaDownloadInline.php
8 9 10 11 12 13 14 15 | * A substitution plugin for a direct download link to a file. * * @Substitution( * id = "media_download_inline" , * label = @Translation( "Direct download URL for media item (Browser may display media directly)" ), * ) */ class MediaDownloadInline extends MediaDownload { |
11.10.2020
media_entity_file_redirect 8.x-1.0-beta1 ::
src/Plugin/Linkit/Substitution/MediaFileRedirect.php
12 13 14 15 16 17 18 19 | * A substitution plugin for the URL to a file associated with a media entity. * * @Substitution( * id = "media_file_redirect" , * label = @Translation( "URL that redirects to direct file path" ), * ) */ class MediaFileRedirect extends PluginBase implements SubstitutionInterface { |