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
<a href="/"><img src="logo.gif" alt="Return to home page" /></a> |
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
<abbr title="Hypertext Markup Language">HTML</abbr> isn't so hard to learn after all, is it? |
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
<cffunction name="payInvoicePartially" returntype="struct" hint="Creates partial payment and applies to invoice. Based on the method found here: https://github.com/novaksolutions/infusionsoft-php-sdk/blob/master/Infusionsoft/InvoiceService.php" output="false"> | |
<cfargument name="contactId" type="numeric" required="true"> | |
<cfargument name="invoiceId" type="numeric" required="true"> | |
<cfargument name="creditCardId" type="numeric" required="true"> | |
<cfargument name="merchantAccountId" type="numeric" required="true"> | |
<cfargument name="notes" type="string" required="false" default=""> | |
<cfargument name="bypassCommissions" type="boolean" required="false" default="false"> | |
<cfscript> | |
local.sdk = CreateObject("component", "com.liquifusion.infusionsoft.core.Sdk").init( | |
subDomain=variables.instance.id, |
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
// Not recommended | |
body { | |
padding: 0; | |
margin: 0; | |
background: #f5f5f5; | |
line-height: 1.2; | |
} | |
// Preferred | |
body { |
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
$ pg_dump -h [host address] -p [port] -U [username] [database name] -F t -f [file path] |
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
<script> | |
var referrer = document.referrer; | |
if (referrer === '') { | |
referrer = 'No Referrer'; | |
} | |
ga('send', 'event', '404 Error', document.location.href, referrer, 0, { nonInteraction: true }); | |
</script> |
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
@import "foundation/components/grid"; | |
.layout { | |
// `layout` container functions as a row | |
@include grid-row(); | |
} | |
.layout-content { | |
// Mobile-first: make `layout-container` full-width | |
@include grid-column(12); |
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
$(document).ready(function() { | |
$("a[href*='.pdf']").click(function(e) { | |
window.open(this.href, "", "toolbar=0"); | |
e.preventDefault(); | |
}); | |
}); |
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
<cfoutput> | |
#startFormTag(action="save")# | |
#textField(label="Name", objectName="user", property="name")# | |
#textField(label="Email", objectName="user", property="email")# | |
<div>#submitTag()#</div> | |
#endFormTag()# | |
</cfoutput> |
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
<cfoutput> | |
<tr> | |
<td>#arguments.name#</td> | |
<td>#arguments.email#</td> | |
<td>#linkTo(text="Edit", action="edit", key=users.id, title="Edit #arguments.name#")#</td> | |
<td>#linkTo(text="Delete", action="delete", key=users.id, title="Delete #arguments.name#", confirm="Are you sure that you want to delete #arguments.name#?")#</td> | |
</tr> | |
</cfoutput> |