<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<div class="frm_wrap" id="frm-addons-page">
<?php
FrmAppHelper::get_admin_header(
array(
'label' => __( 'Formidable Add-Ons', 'formidable' ),
)
);
?>
<div class="wrap">
<?php
include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' );
FrmAppHelper::show_search_box(
array(
'input_id' => 'addon',
'placeholder' => __( 'Search Add-ons', 'formidable' ),
'tosearch' => 'frm-card',
)
);
if ( FrmAppHelper::pro_is_connected() ) {
?>
<p class="alignleft">
<?php esc_html_e( 'Missing add-ons?', 'formidable' ); ?>
<a href="#" id="frm_reconnect_link" class="frm-show-authorized" data-refresh="1">
<?php esc_html_e( 'Check now for a recent upgrade or renewal', 'formidable' ); ?>
</a>
</p>
<?php
} else {
FrmSettingsController::license_box();
}
?>
<div class="clear"></div>
<div id="the-list" class="frm-addons">
<?php foreach ( $addons as $slug => $addon ) { ?>
<div class="frm-card plugin-card-<?php echo esc_attr( $slug ); ?> frm-no-thumb frm-addon-<?php echo esc_attr( $addon['status']['type'] ); ?>">
<div class="plugin-card-top">
<h2>
<?php
echo esc_html( ! empty( $addon['display_name'] ) ? $addon['display_name'] : $addon['title'] );
if ( ! empty( $addon['is_new'] ) ) {
FrmAppHelper::show_pill_text();
}
?>
</h2>
<p>
<?php
echo FrmAppHelper::kses( $addon['excerpt'], array( 'a' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$show_docs = isset( $addon['docs'] ) && ! empty( $addon['docs'] ) && $addon['installed'];
?>
<?php if ( $show_docs ) { ?>
<br/><a href="<?php echo esc_url( $addon['docs'] ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'View Docs', 'formidable' ); ?>">
<?php esc_html_e( 'View Docs', 'formidable' ); ?>
</a>
<?php } ?>
</p>
<?php
$plan_required = FrmFormsHelper::get_plan_required( $addon );
if ( ! $show_docs ) {
FrmFormsHelper::show_plan_required( $plan_required, $pricing . '&utm_content=' . $addon['slug'] );
}
?>
</div>
<div class="plugin-card-bottom">
<span class="addon-status">
<?php
printf(
/* translators: %s: Status name */
esc_html__( 'Status: %s', 'formidable' ),
'<span class="addon-status-label">' . esc_html( $addon['status']['label'] ) . '</span>'
);
?>
</span>
<?php
$passing = array(
'addon' => $addon,
'license_type' => ! empty( $license_type ) ? $license_type : false,
'plan_required' => 'plan_required',
'upgrade_link' => $pricing,
);
FrmAddonsController::show_conditional_action_button( $passing );
?>
</div>
</div>
<?php
}//end foreach
?>
</div>
</div>
</div>
|