function ctools_entity_field_content_type_substitute_keywords

Replace context keywords.

1 string reference to 'ctools_entity_field_content_type_substitute_keywords'
ctools_entity_field_content_type_render in plugins/content_types/entity_context/entity_field.inc
Render the custom content type.

File

plugins/content_types/entity_context/entity_field.inc, line 184

Code

function ctools_entity_field_content_type_substitute_keywords($markup, array $element) {
    return ctools_context_keyword_substitute($markup, array(), array(
        $element['#ctools_context'],
    ));
}