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
<h3><?php echo metadata('item', array('Dublin Core','Title')); ?></h3> | |
<div id="primary"> | |
<!-- Items metadata --> | |
<div id="item-metadata"> | |
<?php echo all_element_texts('item'); ?> | |
</div> | |
<?php if(metadata('item','Collection Name')): ?> |
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
<cfparam name="attributes.type" default=""> | |
<!--- Original from http://cflove.org/2013/02/using-amazon-ses-api-sendrawemail-with-coldfusion.cfm ---> | |
<!--- Modified by [email protected] ---> | |
<cfswitch expression="#thisTag.ExecutionMode#"> | |
<cfcase value="start"> | |
</cfcase> | |
<cfdefaultcase> |
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
/** | |
* Check if the provided exhibit page is empty (layout type = text, no text) | |
* | |
* @param ExhibitPage $exhibitPage | |
* @return boolean | |
**/ | |
function my_exhibit_builder_exhibit_page_is_empty($exhibitPage) | |
{ | |
if ($exhibitPage->layout == 'text') { | |
$entries = $exhibitPage->getPageEntries(); |