Skip to content

Instantly share code, notes, and snippets.

View TheRealJAG's full-sized avatar
🎯
Focusing

Jorge A. Gonzalez TheRealJAG

🎯
Focusing
View GitHub Profile

DEVELOPER PLUS

87 Multiple Choice items (85 scored, 2 unscored)
120 minutes to complete the exam
Based on Magento Community Edition 1.9 and Magento Enterprise Edition 1.14

Passing score

Magento Certified Developer Plus exam: For sections 11 & 12 combined a score of 7 or higher AND meet the overall passing score of 48 or higher

 5%  1-Basics (config, events, cron, translations, theme, locating template/layout file)

6% 2-Request Flow

@mborodov
mborodov / magento2-cookies.MD
Last active January 18, 2020 10:33
Magento 2 Cookies

Sample work with Cookie in Magento 2

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$cookieManager = $objectManager->get('Magento\Framework\Stdlib\CookieManagerInterface');

// set cookie value
$cookieManager->setPublicCookie('key', 'value');

//get cookie value
@proxium
proxium / magento_dummy_simple_products_generation.php
Last active May 8, 2018 17:39
You need to put this script under shell/ directory in you Magento folder and adjust the constants to sweet your needs.
<?php
// env config
ini_set('display_errors', 1);
umask(0);
// mage setup
require_once dirname(__FILE__).'/../app/Mage.php';
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);