This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> | |
<default> | |
</default> | |
</config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<templateSet group="EcomCoders"> | |
<template name="m2setget" value="/** * Getter for $FIELD_UNDERSCORES$ * * @return $TYPEHINT$|null */ public function get$FIELD_CAMELCASE_CAPITALIZED$() { return $this->_getData('$FIELD_UNDERSCORES$'); } /** * Setter for $FIELD_UNDERSCORES$ * * @param $TYPEHINT$ $$$FIELD_CAMELCASE$ * @return $this */ public function set$FIELD_CAMELCASE_CAPITALIZED$($$$FIELD_CAMELCASE$) { return $this->setData('$FIELD_UNDERSCORES$', $$$FIELD_CAMELCASE$); }$END$" description="Magento2-Setter/Getter-Method" toReformat="true" toShortenFQNames="true"> | |
<variable name="FIELD_UNDERSCORES" expression="" defaultValue="" alwaysStopAt="true" /> | |
<variable name="FIELD_CAMELCASE" expression="camelCase(FIELD_UNDERSCORES)" defaultValue="" alwaysStopAt="false" /> | |
<variable name="FIELD_CAMELCASE_CAPITALIZED" expression="capitalize(camelCase(FIELD_UNDERSCORES))" defaultValue="" alwaysStopAt="false" /> | |
<var |