PHP code example of enanobots / m2-dbdumper

1. Go to this page and download the library: Download enanobots/m2-dbdumper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

enanobots / m2-dbdumper example snippets


    public function decorateData(int $entityId, ?string $value = null): string
    {
        return sprintf("%s@%s", $this->_getEmailFromSchema($entityId), $this->emailDomain);
    }

    private function _getEmailFromSchema(int $entityId): string
    {
        return str_replace(
            [
                '{{firstname}}',
                '{{lastname}}'
            ],
            [
                $this->translitUrl->filter($this->firstname->decorateData($entityId)),
                $this->translitUrl->filter($this->lastname->decorateData($entityId))
            ],
            $this->emailSchema
        );
    }

[...]
    return $this->firstNames[$entityId % (count($this->firstNames) - 1)];
[...]

php bin/magento setup:upgrade

php bin/magento qoliber:dump --mode=ZZZ

php bin/magento qoliber:dump --mode=jakub