Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created May 12, 2014 09:06
Show Gist options
  • Save flashvnn/547d9e75fbb746f989e9 to your computer and use it in GitHub Desktop.
Save flashvnn/547d9e75fbb746f989e9 to your computer and use it in GitHub Desktop.
Drupal Composer Add autoload class at runtime.
<?php
function illuminate_example_page(){
$loader = ComposerAutoloaderInitComposerManager::getLoader();
$loader->add("Drupal\\illuminate_example\\Example", drupal_get_path("module", "illuminate_example") . "/lib");
return "OK";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment