Skip to content

Instantly share code, notes, and snippets.

@johnrobertwilson
Created November 28, 2011 23:00
Show Gist options
  • Save johnrobertwilson/1402498 to your computer and use it in GitHub Desktop.
Save johnrobertwilson/1402498 to your computer and use it in GitHub Desktop.
state_machine
<?php
/**
* @file
* state_machine.module
*/
/**
* Class file loader for base.inc.
*/
function state_machine_load_class_file() {
if (!class_exists('StateMachine')) {
require_once drupal_get_path('module', 'state_machine') . '/inc/base.inc';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment