Last active
January 22, 2016 09:02
-
-
Save jmolivas/98b75e9689613bc54d5c to your computer and use it in GitHub Desktop.
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 | |
/** | |
* Update example 8001 | |
*/ | |
function example_update_8001(&$sandbox) { | |
print 'executing example update 8001'; | |
} | |
/** | |
* Update example 8002 | |
*/ | |
function example_update_8002(&$sandbox) { | |
print 'executing example update 8002'; | |
} | |
/** | |
* Update example 8003 | |
*/ | |
function example_update_8003(&$sandbox) { | |
print 'executing example update 8003'; | |
} |
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 | |
/** | |
* Update samples 8001 | |
*/ | |
function samples_update_8001(&$sandbox) { | |
print 'executing samples update 8001'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment