Skip to content

Instantly share code, notes, and snippets.

@somatonic
Last active October 5, 2015 09:37
Show Gist options
  • Save somatonic/2787094 to your computer and use it in GitHub Desktop.
Save somatonic/2787094 to your computer and use it in GitHub Desktop.
flourish autloader
<?php
function flourish_loader( $class_name )
{
// Customize this to your root Flourish directory
$flourish_root = wire("config")->paths->root . '.libs/flourish/';
$file = $flourish_root . $class_name . '.php';
if (file_exists($file)) {
include $file;
}
}
spl_autoload_register( 'flourish_loader', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment