Skip to content

Instantly share code, notes, and snippets.

View jasonevans1's full-sized avatar
:octocat:

Jason Evans jasonevans1

:octocat:
View GitHub Profile
@jasonevans1
jasonevans1 / CustomerAuthenticated.php
Created May 19, 2022 22:33
Magento Customer Authenticated Plugin
<?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
@jasonevans1
jasonevans1 / AddActivatedCustomerAttribute.php
Last active May 19, 2022 21:38
Magento 2 Create Customer Attribute Patch
<?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;
@jasonevans1
jasonevans1 / gist:00cfeac70842786c373a5b02e535a6ea
Last active March 9, 2022 14:44
Magento 2 Coding Test Requirements
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
// --- 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
@jasonevans1
jasonevans1 / gist:e2c6e99964f5a547893b
Created December 10, 2014 15:47
Useful Linux Commands

find any files that you have changed in the last 3 days with the suffix of ________:

find . -mtime -3 -type f \( -iname \*.phtml -o -iname \*.php -o -iname \*.xml \) -print

@jasonevans1
jasonevans1 / gist:8138075
Created December 26, 2013 20:07
Zend Server deployment command examples.
#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"