Skip to content

Instantly share code, notes, and snippets.

View 123andy's full-sized avatar

Andy Martin 123andy

  • Stanford University
  • Stanford, CA
View GitHub Profile
@123andy
123andy / config.js
Created April 30, 2019 17:00
converting format of js...
// 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')
@123andy
123andy / ActionTagHelper.php
Last active March 22, 2021 13:40
Custom Action Tag to convert "Andy's Hook Framework" things into External Modules
<?php
namespace Stanford\Utility;
use \REDCap as REDCap;
/**
* Class ActionTagHelper
*
* A class for helping to parse custom action tags
*/
class ActionTagHelper