Created
November 28, 2011 23:00
-
-
Save johnrobertwilson/1402498 to your computer and use it in GitHub Desktop.
state_machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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