Link products to each other with user configurable types.
Install via composer
composer require skywire/linkedproducts
| SET FOREIGN_KEY_CHECKS=0; | |
| UPDATE `core_store` SET store_id = 0 WHERE code='admin'; | |
| UPDATE `core_store_group` SET group_id = 0 WHERE name='Default'; | |
| UPDATE `core_website` SET website_id = 0 WHERE code='admin'; | |
| UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN'; | |
| SET FOREIGN_KEY_CHECKS=1; |
| <?php | |
| // Trigger 500 response | |
| // allows styling of "There has been an error processing your request" page | |
| // note setIsDeveloperModes should be false to prevent xxception being thrown | |
| throw new Exception('you shall not pass'); |
| <?php | |
| class Skywire_Speedcurve_Alert extends Mage_Shell_Abstract | |
| { | |
| const GIT_COMMIT_API = 'https://api.github.com/repos/%s/%s/git/commits/%s'; | |
| const SPEEDCURVE_API = 'https://api.speedcurve.com/v1/deploys'; | |
| protected $hash; |