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
// Create a javascript object to hold all of our config features | |
var SummarizeConfig = { | |
init: function(params) { | |
// Make true | |
this.isDev = true; | |
// We need to delay a little bit for the rest of the config to finish loading | |
setTimeout(function() { | |
SummarizeConfig.configAjax.call(SummarizeConfig,'pages/ConfigAjax') |
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 | |
namespace Stanford\Utility; | |
use \REDCap as REDCap; | |
/** | |
* Class ActionTagHelper | |
* | |
* A class for helping to parse custom action tags | |
*/ | |
class ActionTagHelper |
NewerOlder