Skip to content
This repository was archived by the owner on Jan 5, 2018. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: 'EmbedType Annotation Entity test'
type: module
description: 'Support module for the Embed module tests.'
core: 8.x
package: Testing
version: VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

/**
* @file
* contains \Drupal\embedtype_annoatation_entity_test\Plugin\EmbedType\EmbedCategoryEntity
*/

namespace \Drupal\embedtype_annoatation_entity_test\Plugin\EmbedType;

/**
* Defines the embedcategoryentity plugin
*
* @EmbedCategoryEntity(
* category = "entity"
* )
*/
class EmbedCategoryEntity {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: 'EmbedType Annotation Url1 test'
type: module
description: 'Support module for the Embed module tests.'
core: 8.x
package: Testing
version: VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

/**
* @file
* contains \Drupal\embedtype_annoatation_url1_test\Plugin\EmbedType\EmbedCategoryUrl1
*/

namespace \Drupal\embedtype_annoatation_url1_test\Plugin\EmbedType;

/**
* Defines the "embedcategoryurl1" plugin
*
* @EmbedCategoryEntity(
* category = "url"
* )
*/
class EmbedCategoryUrl1 {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: 'EmbedType Annotation Url2 test'
type: module
description: 'Support module for the Embed module tests.'
core: 8.x
package: Testing
version: VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

/**
* @file
* contains \Drupal\embedtype_annoatation_url2_test\Plugin\EmbedType\EmbedCategoryUrl2
*/

namespace \Drupal\embedtype_annoatation_url2_test\Plugin\EmbedType;

/**
* Defines the "embedcategoryurl2" plugin
*
* @EmbedCategoryUrl2(
* category = "url"
* )
*/
class EmbedCategoryUrl2 {
}