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
<!--- start: scrub empty param relationships ---> | |
<cffunction name="scrubEmptyParamRelationships" output="false" returntype="query"> | |
<cfargument name="query" required="true"> | |
<cfset local.openList = "" /> | |
<cfset local.closeList = "" /> | |
<cfset local.removeList = "" /> | |
<cfloop query="arguments.query"> | |
<cfif relationship eq "andOpenGrouping"> |
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
<cfscript> | |
public any function getChildrenFeedByContentID( | |
required contentid | |
, string type='' | |
, string subtype='' | |
) { | |
var local = {}; | |
local.feed = $.getBean('feed'); | |
local.feed.setMaxItems(0); |
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
<extension type="Page" subtype="Location"> | |
<attributeset name="Location Options" container="Basic"> | |
<attribute | |
name="locationAddress1" | |
label="Address Line 1" | |
hint="Enter Address Line 1 of the location" | |
required="true" /> |
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
<cfoutput> | |
<div> | |
<form action="#$.content('url')#?keywords=#$.event('keywords')#"> | |
<dl> | |
<dt>Keywords</dt> | |
<dd><input type="text" name="keywords" value="#HTMLEditFormat($.event('keywords'))#" /></dd> | |
<dd><input type="submit" value="Search" /></dd> | |
</dl> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 40px; | |
} | |
a { | |
display: inline-block; |
NewerOlder