find . -mtime -3 -type f \( -iname \*.phtml -o -iname \*.php -o -iname \*.xml \) -print
This file contains 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
<?php | |
declare(strict_types=1); | |
namespace Abc\Customer\Plugin; | |
use Magento\Customer\Api\AccountManagementInterface; | |
use Magento\Customer\Api\CustomerRepositoryInterface; | |
use Magento\Framework\Exception\NoSuchEntityException; | |
class CustomerAuthenticated |
This file contains 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
<?php | |
/** | |
* Copyright © All rights reserved. | |
* See COPYING.txt for license details. | |
*/ | |
declare(strict_types=1); | |
namespace Abc\Customer\Setup\Patch\Data; | |
use Magento\Customer\Model\Customer; |
This file contains 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
The company ABC wants to review registered customers before they can login to their account on the site. | |
To validate an account, they want every new created accounts on the site to be set as deactivated by default with a flag they'll have control over in the Magento customer admin section. | |
Acceptance Criteria | |
1. Create a module "Abc_Customer" | |
2. Create a customer attribute "activated" programmatically | |
- Attribute created with install script | |
- Attribute of type dropdown Yes/No |
This file contains 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
// --- Compiling --- | |
$ wget http://download.redis.io/releases/redis-2.8.3.tar.gz | |
$ tar xzvf redis-2.8.3.tar.gz | |
$ cd redis-2.8.3 | |
$ make | |
$ make install | |
// --- or using yum --- | |
$ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm |
This file contains 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
#add zend server as a deployment server target. | |
php bin/zs-client.php addTarget --target="aws-test-server" \ | |
--zskey="admin" \ | |
--zssecret="<zend_server_key>" \ | |
--zsurl="<zend_server_url:port>" | |
#eHub Commands | |
php bin/zs-client.php packZpk --folder=<path_to_ehub_code> --destination=<path_to_destination> | |
php bin/zs-client.php installApp --zpk="<path_to_ehub_zpk_file>" --target="aws-test-server" --baseUri="<load_balancer_url>/ehub" --createVhost=TRUE --userParams="base_url=<load_balancer_url>/ehub/&secure_base_url=<load_balancer_url>/ehub/&db_hostname=<rds_endpoint>&db_username=admin&db_password=admin123&db_database=MagentoDB&instance=ehub&prefix=ehub&key=<encryption_key>&host1=<elasticache_endpoint>&idprefix=ehub&db_port=3306" |