Skip to content

Instantly share code, notes, and snippets.

@suabo
Forked from dajoho/gn2 oxid autoload shim
Last active August 29, 2015 14:06
Show Gist options
  • Save suabo/41a1a9f36c5ce01d5a7a to your computer and use it in GitHub Desktop.
Save suabo/41a1a9f36c5ce01d5a7a to your computer and use it in GitHub Desktop.
<?php
require_once __DIR__.'/../core/oxfunctions.php';
function gn2_autoload_shim($class) { (substr($class, -7) == "_parent") ? eval('class '.$class.' {}') : ""; }
spl_autoload_register('gn2_autoload_shim')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment