Created
December 9, 2015 21:38
-
-
Save thomasgriffin/f6b0ee60fef61c742259 to your computer and use it in GitHub Desktop.
OptinMonster Dynamic Text Replacement API - getCustomVariable
This file contains hidden or 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
<script type="text/javascript"> | |
var OptinMonsterCustomVariables = function(app) { | |
/** | |
* API method for retrieving a custom variable. Must be accessed via the app object. | |
* | |
* @param string $key The custom variable key to retrieve. | |
* @return string|bool The value of the custom variable key or false if not found. | |
*/ | |
app.getCustomVariable('foo'); | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment