I hereby claim:
- I am fballiano on github.
- I am fballiano (https://keybase.io/fballiano) on keybase.
- I have a public key ASAIirs8qXvWrjUkyDF67MoeC38l2Fsv7J5b9AHTVmiS6go
To claim this, I am signing this object:
| <?php | |
| declare(strict_types=1); | |
| use Rector\Core\Configuration\Option; | |
| use Rector\Php74\Rector\Property\TypedPropertyRector; | |
| use Rector\Set\ValueObject\SetList; | |
| use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; | |
| use Rector\Core\ValueObject\PhpVersion; |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| define('MAGENTO', realpath(dirname(__FILE__))); | |
| require_once MAGENTO . '/app/Mage.php'; | |
| Mage::app(); | |
| umask(0); | |
| Mage::app('default'); | |
| Mage::getSingleton('core/session', array('name' => 'adminhtml')); | |
| $user = Mage::getModel('admin/user')->loadByUsername('admin'); // Here admin is the Username | |
| if (Mage::getSingleton('adminhtml/url')->useSecretKey()) Mage::getSingleton('adminhtml/url')->renewSecretUrls(); |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Agrigento','AG'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Alessandria','AL'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Ancona','AN'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Arezzo','AR'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Ascoli Piceno','AP'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Asti','AT'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Avellino','AV'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Bari','BA'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Barletta-Andria-Trani','BT'); | |
| INSERT INTO directory_country_region (country_id, default_name, code) VALUES ('IT','Belluno','BL'); |
| 93c93,106 | |
| < $taxClassAmount = array_merge($taxClassAmount, $shippingTax); | |
| --- | |
| > $_weees = Mage::helper('tax')->getAllWeee($this->getOrder()); | |
| > $wees = array(); | |
| > foreach ($_weees as $name => $value) { | |
| > $wees[] = array( | |
| > "tax_amount" => $value, | |
| > "base_tax_amount" => $value, | |
| > "title" => $name, |
| <?php | |
| require_once 'abstract.php'; | |
| class Shell_Delete_Old_Enterprise_Staging_Backups extends Mage_Shell_Abstract | |
| { | |
| public function run() | |
| { | |
| $actions = Mage::getModel("enterprise_staging/staging_action")->getCollection() | |
| ->addFieldToFilter("type", "backup") |
| #!/bin/bash | |
| # user: ubuntu pass: just hit ENTER | |
| apt-get install vim ubuntu-defaults-builder live-build uck syslinux-utils coreutils | |
| # open /usr/share/livecd-rootfs/live-build/auto/config and add PROJECT=base where there are all the variables | |
| ubuntu-defaults-template ubuntu-defaults-umr | |
| ubuntu-defaults-image --package ubuntu-defaults-umr_0.1_all.deb | |
| mv binary.hybrid.iso ubuntu-mini-remix-15.10-amd64.iso | |
| md5sum ubuntu-mini-remix-15.10-amd64.iso>ubuntu-mini-remix-15.10-amd64.iso.md5 | |
| mv ubuntu-mini-remix-15.10-amd64.iso* 15.10/ |
| <?php | |
| require_once 'app/Mage.php'; | |
| ini_set('display_errors', 1); | |
| Mage::setIsDeveloperMode(true); | |
| umask(0); | |
| Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); | |
| try { | |
| Mage::getModel('catalogrule/rule')->applyAll(); | |
| Mage::getModel('catalogrule/flag')->loadSelf() |
| public function indexAction() | |
| { | |
| $this->loadLayout(); | |
| $this->_initLayoutMessages("customer/session"); | |
| $this->_initLayoutMessages("catalog/session"); | |
| $this->renderLayout(); | |
| } |
| <?php | |
| require_once "app/Mage.php"; | |
| umask(0); | |
| Mage::app(); | |
| Mage::singleton("core/session", array("name"=>"frontend")); | |
| $session = Mage::getSingleton("customer/session"); | |
| if ($session->isLoggedIn()) { | |
| } else { |