Type
magento2-module
Magento 2 Module with some tools to make dev life and debugging easier
magento2-module
MIT
None
None
None
None
None
Magento 2 Module with some tools to make dev life and debugging easier
how to use :
bin/magento easygento:utils:cronrunner --cronClass="\My\CronClass\toRun"
The class ProductUtils
is useful to create simply and quickly your custom Product Attributes.
In your InstallData/ UpgradeData , call \Easygento\Utils\Model\ProductUtils as DI,
and use public function inside.
To create an custom product attribute, pass an array of your data as argument :
Example :
$attributes = [
'another_custom_attribute' => [
'type' => 'varchar',
'label' => 'Another Custom Label',
'input' => 'text',
'source' => '',
'filterable' => false,
'visible_on_front' => true,
'used_in_product_listing' => false,
'attribute_group_name' => 'My Custom Attribute Group Name',
'backend' => ''
],
'another_custom_attribute_with_option' => [
'type' => 'int',
'label' => 'Type',
'input' => 'select',
'source' => '',
'filterable' => true,
'visible_on_front' => true,
'used_in_product_listing' => true,
'backend' => '',
'options' => [
'Option A',
'Option B',
'Option C',
'Option D',
'Option E',
'Option F'
]
],
'another_custom_attribute_boolean' =>[
'type' => 'int',
'label' => 'Shown In List',
'input' => 'select',
'source' => 'Magento\Eav\Model\Entity\Attribute\Source\Boolean',
'filterable' => false,
'visible_on_front' => false,
'used_in_product_listing' => false,
'attribute_group_name' => 'Another Custom Attribute Group Name',
'attribute_set_name' => 'my custom Attribute Set Name',
'backend' => ''
],
'another_custom_attribute_multiselect' => [
'type' => 'varchar',
'label' => 'Collection',
'input' => 'multiselect',
'source' => '',
'filterable' => true,
'visible_on_front' => true,
'used_in_product_listing' => true,
'options' => [
'Collection A',
'Collection B',
'Collection C',
'Collection D',
],
'attribute_group_name' => 'Another Custom Attribute Group Name',
'backend' => 'Magento\Eav\Model\Entity\Attribute\Backend\ArrayBackend'
],
];
All you need to do is injected the class \Easygento\Utils\Logger\Logger
in your class.
Then you can use the default method as debug() , info() ...
The log will be record in the default path /var/log/easygento/debug.log
You can define your own log paths by using Virtual Type. See example in the di.xml
file.
with composer :
composer require easygento/magento2-utils:dev-master
without composer :
You can download the latest release and put it in you app/code folder
Once the module installed , run the command
bin/magento setup:upgrade
and
bin/magento setup:di:compile