Skip to content

Instantly share code, notes, and snippets.

View antoinekociuba's full-sized avatar

Antoine Kociuba antoinekociuba

View GitHub Profile
@FlYos
FlYos / --Readme.md
Last active July 22, 2016 13:03
Load Magento CMS page in popin with Ajax request

Description

This module allows you to change the template pages cms backoffice defined by a particular template when we load the page through an ajax request

How to us

Create this directory structure in local pool : Webaki

  • etc -- config.xml
  • Model -- Observer.php
@xeoncross
xeoncross / domdocument_encoding.php
Last active December 18, 2024 19:46
Fix HTML encoding errors with PHP DOMDocument
<?php
// Ignore errors
libxml_use_internal_errors(true) AND libxml_clear_errors();
// http://stackoverflow.com/q/10237238/99923
// http://stackoverflow.com/q/12034235/99923
// http://stackoverflow.com/q/8218230/99923
// original input (unknown encoding)
@herveguetin
herveguetin / .gitignore_magento
Last active October 24, 2019 09:06
Magento .gitignore example
######################
# Magento .gitignore #
######################
# Magento Core unnecessary files #
##################################
/errors/local.xml
/index.php
/install.php
/mage
@laurent35240
laurent35240 / PHP.xml
Created July 26, 2012 21:26
Magento snippets for PhpStorm (file location is ~/.WebIde40/config/templates/PHP.xml)
<?xml version="1.0" encoding="UTF-8"?>
<templateSet group="PHP">
<template name="help" value="Mage::helper('$helperName$')" description="Mage::helper" toReformat="false" toShortenFQNames="true">
<variable name="helperName" expression="" defaultValue="core" alwaysStopAt="true" />
<context>
<option name="HTML_TEXT" value="false" />
<option name="HTML" value="false" />
<option name="XSL_TEXT" value="false" />
<option name="XML" value="false" />
<option name="CSS" value="false" />
@Schrank
Schrank / class.php
Created March 27, 2012 16:05
Stop Indexing in Magento
<?php
class Klasse {
public static function switchIndexingOff() {
$processes = Mage::getSingleton('index/indexer')->getProcessesCollection();
$processes->walk('setMode', array(Mage_Index_Model_Process::MODE_MANUAL));
$processes->walk('save');
}
public static function rebuildIndices() {
$processes = Mage::getSingleton('index/indexer')->getProcessesCollection();
@leek
leek / _Magento1_DeleteTestData.md
Last active December 29, 2023 09:51
Magento 1 - Delete All Test Data

These set of scripts are for Magento 1. For Magento 2, see this Gist.