| Current File : /home/digitaw/www/wp-content/plugins/fluentform/app/Views/admin/addons/index.php |
<?php
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in view files
do_action_deprecated(
'fluentform_global_menu',
[
],
FLUENTFORM_FRAMEWORK_UPGRADE,
'fluentform/global_menu',
'Use fluentform/global_menu instead of fluentform_global_menu.'
);
do_action('fluentform/global_menu'); ?>
<div class="ff_form_wrap">
<div class="ff_form_wrap_area">
<?php if(!$hasPro){ ?>
<div class="ff_card ff_update_card el-row is-align-middle mb-4">
<div class="ff-update-icon">
<span><i class="el-icon-warning el-icon-warning"></i>
</div>
<div class="ff-update-body">
<h5 class="title mb-1">
<?php esc_html_e('You are using the free version of Fluent Forms.', 'fluentform'); ?>
</h5>
<p class="text">
<?php esc_html_e('Upgrade to get access to all the advanced features.', 'fluentform'); ?>
</p>
</div>
<div class="ff-update-action">
<a
target="_blank"
href="https://fluentforms.com/pricing/?utm_source=plugin&utm_medium=wp_install&utm_campaign=ff_upgrade"
class="el-button el-button--primary"
>
<?php esc_html_e('Upgrade to Pro', 'fluentform'); ?>
</a>
</div>
</div>
<?php }?>
<div class="ff_card">
<ul class="ff_tab mb-5">
<li class="ff_tab_item <?php echo ($current_menu_item == 'fluentform_add_ons') ? 'active' : ''; ?>">
<a class="ff_tab_link" href="<?php echo esc_url($base_url); ?>">
<?php esc_html_e('Modules', 'fluentform'); ?>
</a>
</li>
<?php foreach ($menus as $menu_index => $menu_title): ?>
<li class="ff_tab_item ff_tab_item_<?php echo esc_attr($menu_index); ?> <?php echo ($current_menu_item == $menu_index) ? 'active' : ''; ?>">
<a class="ff_tab_link" href="<?php echo esc_url($base_url); ?>&sub_page=<?php echo esc_attr($menu_index); ?>">
<?php echo esc_html($menu_title); ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<div class="ff_add_on_body ff_add_on_body_<?php echo esc_attr($current_menu_item); ?>">
<?php
do_action_deprecated(
'fluentform_addons_page_render_' . $current_menu_item,
[
],
FLUENTFORM_FRAMEWORK_UPGRADE,
'fluentform/addons_page_render_' . $current_menu_item,
'Use fluentform/addons_page_render_' . $current_menu_item . ' instead of fluentform_addons_page_render_' . $current_menu_item
);
do_action('fluentform/addons_page_render_' . $current_menu_item);
?>
</div>
</div>
</div>
</div>