Skip to content

Instantly share code, notes, and snippets.

View RiccardoB's full-sized avatar

Riccardo Bianconi RiccardoB

View GitHub Profile
@RiccardoB
RiccardoB / magento_urls.php
Created November 11, 2015 13:36
Get all Magento URLs by store view
<?php
require_once 'app/Mage.php';
umask(0);
// set store view
$store_view_filter = isset($_REQUEST['store_view']) ? $_REQUEST['store_view'] : false;
// set export type
$export_to = isset($_REQUEST['export_to']) ? $_REQUEST['export_to'] : false;