Skip to content

Commit 2aa1baf

Browse files
authored
Merge pull request #411 from drpayyne/queue-generator
Queue generator
2 parents 1e1fa29 + 8eafbb2 commit 2aa1baf

File tree

43 files changed

+1794
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1794
-0
lines changed

resources/META-INF/plugin.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
<action id="MagentoCreateUiComponentForm" class="com.magento.idea.magento2plugin.actions.generation.NewUiComponentFormAction" />
7070
<action id="NewModelsAction" class="com.magento.idea.magento2plugin.actions.generation.NewModelsAction" />
7171
<action id="MagentoCreateADataModel" class="com.magento.idea.magento2plugin.actions.generation.NewDataModelAction" />
72+
<action id="MagentoMessageQueue" class="com.magento.idea.magento2plugin.actions.generation.NewMessageQueueAction" />
7273
<add-to-group group-id="NewGroup" anchor="last"/>
7374
</group>
7475

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="urn:magento:framework:Communication/etc/communication.xsd">
4+
</config>

resources/fileTemplates/internal/Magento Queue Communication XML.xml.html

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="urn:magento:framework-message-queue:etc/consumer.xsd">
4+
</config>

resources/fileTemplates/internal/Magento Queue Consumer XML.xml.html

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="urn:magento:framework-message-queue:etc/publisher.xsd">
4+
</config>

resources/fileTemplates/internal/Magento Queue Publisher XML.xml.html

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="urn:magento:framework-message-queue:etc/topology.xsd">
4+
</config>

resources/fileTemplates/internal/Magento Queue Topology XML.xml.html

Whitespace-only changes.

resources/magento2/validation.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ validator.box.notEmpty=The {0} field must contain a valid selection from the dro
33
validator.package.validPath=Please specify a valid Magento 2 installation path
44
validator.alphaNumericCharacters=The {0} field must contain letters and numbers only
55
validator.alphaNumericAndUnderscoreCharacters={0} must contain letters, numbers and underscores only
6+
validator.alphaAndPeriodCharacters=The {0} field must contain alphabets and periods only
7+
validator.alphaAndDashCharacters=The {0} field must contain alphabets and dashes only
68
validator.alreadyDeclared={0} is already declared in the {1} module
79
validator.startWithNumberOrCapitalLetter=The {0} field must start with a number or a capital letter
810
validator.onlyNumbers=The {0} field must contain numbers only
911
validator.mustNotBeNegative={0} must not be negative
1012
validator.identifier=The {0} field must contain letters, numbers, dashes, and underscores only
1113
validator.class.isNotValid=The {0} field does not contain a valid class name
14+
validator.fqn.isNotValid=The {0} field does not contain a valid fully qualified class name
1215
validator.class.shouldBeUnique=Duplicated class {0}
1316
validator.namespace.isNotValid=The {0} field does not contain a valid namespace
1417
validator.directory.isNotValid=The {0} field does not contain a valid directory

0 commit comments

Comments
 (0)