File: /home/honghock/public_html/wp-content/plugins/ninja-tables/app/Views/public/drag-and-drop-html.php
<?php
$max_width = "";
if (isset($setting['general']['options']['container_max_width_switch']['value']) && $setting['general']['options']['container_max_width_switch']['value'] == 'true') {
$max_width = $setting['general']['options']['container_max_width_switch']['childs']['container_max_width']['value'];
$tableAlignment = $setting['general']['options']['table_alignment']['value'];
$alignment = '';
if ($tableAlignment === 'left') {
$alignment = 'margin-right: auto';
} else {
if ($tableAlignment === 'right') {
$alignment = 'margin-left: auto';
} else {
if ($tableAlignment === 'center') {
$alignment = 'margin-left: auto; margin-right: auto';
}
}
}
}
$max_height = "500";
if (isset($setting['general']['options']['container_max_height']['value'])) {
$max_height = $setting['general']['options']['container_max_height']['value'];
}
?>
<div class="ntb_table_wrapper <?php echo esc_attr($ntb_instance); ?>"
id='ninja_table_builder_<?php echo esc_attr($table_id); ?>'
data-ninja_table_builder_instance="<?php echo esc_attr($ntb_instance); ?>"
style="
<?php echo esc_attr("max-height:$max_height" . "px"); ?>;
<?php echo esc_attr($max_width != '' ? "max-width: $max_width" . "px;" . $alignment : 'max-width: 1160px'); ?>;">
<?php
ninjaTablesPrintSafeVar($ninja_table_builder_html);
?>
</div>
<?php
do_action('ninja_tables_drag_and_drop_after_table_print', $table_id);
?>
<?php
if (is_user_logged_in() && ninja_table_admin_role()): ?>
<a href="<?php echo admin_url('admin.php?page=ninja_tables#/table_builder_edit_table/' . intval($table_id)); ?>"
class="ntb_edit_table_class_<?php echo esc_attr($table_id) ?>"><?php _e('Edit Table', 'ninja-tables') ?></a>
<?php endif; ?>