File: /var/www/html/triad-infosec/wp-content/plugins/fusion-builder/inc/templates/context-menu.php
<?php
/**
* An underscore.js template.
*
* @package fusion-builder
*/
?>
<script type="text/template" id="fusion-builder-context-menu">
<#
var type = 'undefined' !== typeof type ? type : 'unknown',
label = 'undefined' !== typeof element_type ? element_type : 'Unknown',
canSave = canEdit = canRemove = canClone = canCopy = true,
label = fusionBuilderText.element,
elFocus = '#fusion-builder-save-element-input',
target = '#fusion-builder-layouts-elements',
targetType = FusionPageBuilderApp.getElementType( element_type ),
clipboard = 'undefined' !== typeof data.type ? FusionPageBuilderApp.getElementType( data.type ) : false,
hasClipboard = 'undefined' !== typeof data.type && data.type ? true : false,
pageType = 'undefined' !== typeof pageType ? pageType : 'default',
canPaste = true,
pasteSame,
pasteChild;
// Check targeted element context.
switch ( targetType ) {
case 'fusion_builder_container' :
label = fusionBuilderText.full_width_section;
target = '#fusion-builder-layouts-sections';
// If clipboard has column, it can be added to container.
pasteChild = 'fusion_builder_column' === clipboard;
canRemove = canSave = canClone = canPaste = 'container' !== pageType;
break;
case 'fusion_builder_column' :
label = fusionBuilderText.column;
target = '#fusion-builder-layouts-columns';
// If clipboard is container then allow paste to same.
pasteChild = 'element' === clipboard || 'parent_element' === clipboard;
canRemove = canSave = canClone = canPaste = 'column' !== pageType;
break;
case 'element' :
label = fusionAllElements[ element_type ].name;
// Regular element has no children.
pasteChild = false;
canRemove = canSave = canClone = canPaste = 'element' !== pageType;
// Theme builder components can't be copied or cloned.
if ( -1 !== element_type.indexOf( 'fusion_tb_' ) ) {
canCopy = canClone = false;
}
break;
case 'parent_element' :
label = fusionAllElements[ element_type ].name;
// If its a child element and the correct child element, allow paste.
pasteChild = 'child_element' === clipboard && fusionMultiElements[ element_type ] === FusionPageBuilderApp.clipboard.type;
canRemove = canSave = canClone = canPaste = 'element' !== pageType;
break;
case 'fusion_builder_row_inner' :
label = fusionAllElements[ element_type ].name;
canEdit = canRemove = canClone = canCopy = false;
// If its a child element and the correct child element, allow paste.
pasteChild = 'fusion_builder_column_inner' === clipboard;
canRemove = canSave = canClone = canPaste = 'element' !== pageType;
break;
case 'fusion_builder_column_inner' :
label = fusionAllElements[ element_type ].name;
canSave = false;
// Child element has no children.
pasteChild = 'element' === clipboard || 'parent_element' === clipboard;
break;
case 'child_element' :
label = fusionAllElements[ element_type ].name;
canSave = false;
// Child element has no children.
pasteChild = false;
break;
}
// For paste before/after parent and regular elements are the same.
targetType = 'parent_element' === targetType ? 'element' : targetType;
clipboard = 'parent_element' === clipboard ? 'element' : clipboard;
// Check if can be pasted before and after.
pasteSame = targetType === clipboard;
#>
<span data-element-type="{{ type }}">{{ label }}</span>
<ul>
<# if ( canEdit ) { #>
<li data-action="edit"><?php esc_html_e( 'Edit', 'fusion-builder' ); ?></li>
<# } #>
<# if ( canSave ) { #>
<li data-action="save" data-focus="{{ elFocus }}" data-target="{{ target }}"><?php esc_html_e( 'Save', 'fusion-builder' ); ?></li>
<# } #>
<# if ( canClone ) { #>
<li data-action="clone"><?php esc_html_e( 'Clone', 'fusion-builder' ); ?></li>
<# } #>
<# if ( canRemove ) { #>
<li data-action="remove"><?php esc_html_e( 'Remove', 'fusion-builder' ); ?></li>
<# } #>
<# if ( canCopy ) { #>
<li data-action="copy"><?php esc_html_e( 'Copy', 'fusion-builder' ); ?></li>
<# } #>
<# if ( pasteSame && hasClipboard && canPaste ) { #>
<li data-action="paste-before"><?php esc_html_e( 'Paste Before', 'fusion-builder' ); ?></li>
<li data-action="paste-after"><?php esc_html_e( 'Paste After', 'fusion-builder' ); ?></li>
<# } #>
<# if ( pasteChild && hasClipboard ) { #>
<li data-action="paste-start"><?php esc_html_e( 'Paste At Start', 'fusion-builder' ); ?></li>
<li data-action="paste-end"><?php esc_html_e( 'Paste At End', 'fusion-builder' ); ?></li>
<# } #>
</ul>
</script>