Skip to content

Instantly share code, notes, and snippets.

@sofadesign
Created April 27, 2010 17:34
Show Gist options
  • Save sofadesign/381039 to your computer and use it in GitHub Desktop.
Save sofadesign/381039 to your computer and use it in GitHub Desktop.
<?php
function autoload_controller($callback)
{
$path = option('controllers_dir');
if(strpos($callback, 'admin_') === 0)
{
$path = file_path($path, 'admin');
}
require_once_dir($path);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment