Skip to content

Instantly share code, notes, and snippets.

View elisei's full-sized avatar
:octocat:
Isto fica feliz em ser útil!

Bruno elisei

:octocat:
Isto fica feliz em ser útil!
View GitHub Profile
@elisei
elisei / addExportButtonMagentoRecurringProfiles.php
Created January 20, 2017 20:33 — forked from tegansnyder/addExportButtonMagentoRecurringProfiles.php
To add a export button to Magento Recurring Profiles edit this file: /app/code/core/Mage/Adminhtml/controllers/Sales/Recurring/ProfileController.php
<?php
// ADD THIS CODE
/**
* Export order grid to CSV format
*/
public function exportCsvAction()
{
$fileName = 'subscriptions.csv';
@elisei
elisei / local.xml
Created June 13, 2017 19:14 — forked from MikeWilkie/local.xml
Magento – Disable Excessive Logging and Reporting in app/etc/local.xml
<?xml version="1.0"?>
<!-- license -->
<config>
<global>
<!-- global config -->
</global>
<frontend>
<events>
<!-- disble logs -->
<controller_action_predispatch>
@elisei
elisei / moip_onestepcheckout.xml
Created December 12, 2017 12:23
moip_onestepcheckout.xml para thema porto
<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_onepage_cadastro>
<reference name="root">
<action method="setTemplate"><template>MOIP/onestepcheckout/page/1column.phtml</template></action>
</reference>
<reference name="head">
<remove name="addthis_smartlayers" />
<action method="addJs" ifconfig="moipall/config/enable_jquery"><script>MOIP/core/jquery.js</script></action>
@elisei
elisei / rest_test.php
Created February 22, 2018 13:22 — forked from xcommerce-gists/rest_test.php
Magento coupon code generator test script
<?php
/********************************************************************
File name: rest_test.php
Description:
A PHP test script that calls the Coupon AutoGen extension
to Magento's REST API.
The Coupon AutoGen API takes:
-- the rule ID of the &quot;Generate Coupons&quot; rule to execute
-- the number of coupon codes to generate
-- the length of each coupon code
@elisei
elisei / dob.phtml
Created June 1, 2018 13:56 — forked from dele454/dob.phtml
Magento DOB widget with DOB Validation
<?php
/**
* @see Mage_Customer_Block_Widget_Dob
*/
?>
<label class="dob-label" for="<?php echo $this->getFieldId('month')?>"<?php if ($this->isRequired()) { echo ' class="required"'; } ?>><?php echo $this->__('Birthday') ?></label>
<div class="customer-dob input-box">
<div class="dob-year">
<?php $currentYear = intval(date("Y")); ?>
<select name="<?php echo $this->getFieldName('year'); ?>" id="<?php echo $this->getFieldId('year'); ?>">
@elisei
elisei / traducao.sql
Created July 3, 2018 13:08
SQL de tradução do magento 1 incluindo unidades federativas.
/* ============================================================================= */
/* VERSAO 1.9.x DO MAGENTO - ATUALIZACAO DE DADOS */
/* ============================================================================= */
SET NAMES 'utf8';
/* admin_role */
UPDATE `admin_role` SET `role_name`='Administradores' WHERE `role_name`='Administrators';
/* api2_acl_role */
{
"date": "",
"env": "",
"event": "PAYMENT.AUTHORIZED",
"resource": {
"payment": {
"_links": {
"order": {
"href": "https://api.moip.com.br/v2/orders/ORD-VCO0NJCKLSN1",
"title": "ORD-KYSUGPF8YWFF"
@elisei
elisei / install_lamp_18.sh
Created December 18, 2018 01:12 — forked from ankurk91/install_lamp_ubuntu.sh
Ubuntu 18.04 - PHP development (php 7.2, MySQL 5.7, apache 2.4)
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
# Ubuntu 18.04 dev Server
# Run like - bash install_lamp.sh
# Script should auto terminate on errors
echo -e "\e[96m Adding PPA \e[39m"
sudo add-apt-repository -y ppa:ondrej/apache2
<action method="removeItem"><type>js_css</type><name>smartwave/bootstrap/css/bootstrap.optimized.min.css</name></action>
<action method="removeItem"><type>skin_css</type><name>css/local.css</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/jquery-1.11.3.min.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/jquery-migrate-1.2.1.min.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/jquery-noconflict.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/plugins/fancybox/js/jquery.fancybox.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/ajaxcart/ajaxaddto.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/plugins/etalage/jquery.etalage.min.js</name></action>
<action method="removeItem"><type>js</type><name>smartwave/jquery/plugins/etalage/jquery.zoom.min.js</name></action>
<action method="removeItem"><type>js</type><nam
@elisei
elisei / .php_cs.dist
Created January 25, 2020 00:04 — forked from joaorobertopb/.php_cs.dist
Esse é um exemplo de configuração do php-cs-fixer que foi construído usando a predefinição Laravel do StyleCI.
<?php
$header = <<<'EOF'
Esse arquivo faz parte de <Empresa/Projeto>
(c) Nome Autor <e-mail>
Lorem ipsum ...
EOF;