35 lines
2.2 KiB
PHP
35 lines
2.2 KiB
PHP
<?php
|
|
|
|
$ds_obj = Wbte\Uimpexp\Ds\Wbte_Ds::get_instance(WT_U_IEW_VERSION);
|
|
$wf_admin_view_path=plugin_dir_path(WT_U_IEW_PLUGIN_FILENAME).'admin/views/';
|
|
|
|
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped in the get_component.
|
|
echo $ds_obj->get_component('header', array( // @codingStandardsIgnoreLine
|
|
'values' => array(
|
|
'plugin_logo' => esc_url(WT_U_IEW_PLUGIN_URL . 'assets/images/plugin_img.png'),
|
|
'plugin_name' => esc_html__('WebToffee Import Export', 'users-customers-import-export-for-wp-woocommerce'),
|
|
'developed_by_txt' => esc_html__('Developed by ', 'users-customers-import-export-for-wp-woocommerce')
|
|
),
|
|
'class' => array(''),
|
|
));
|
|
|
|
// Only display help widget once if multiple basic plugins are active
|
|
if (!defined('WT_IEW_HELP_WIDGET_DISPLAYED')) {
|
|
define('WT_IEW_HELP_WIDGET_DISPLAYED', true);
|
|
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped in the get_component.
|
|
echo $ds_obj->get_component('help-widget', array( // @codingStandardsIgnoreLine
|
|
'values' => array(
|
|
'items' => array(
|
|
array('title' => esc_html__('FAQ', 'users-customers-import-export-for-wp-woocommerce'), 'icon' => 'chat-1', 'href' => 'https://wordpress.org/plugins/users-customers-import-export-for-wp-woocommerce/#:~:text=import%20export%20log-,FAQ,-Does%20this%20plugin', 'target' => '_blank'),
|
|
array('title' => esc_html__('Setup guide', 'users-customers-import-export-for-wp-woocommerce'), 'icon' => 'book', 'href' => 'https://www.webtoffee.com/docs/wp-users-customers-imp-exp-basic/user-import-export-plugin-wordpress-basic-setup-guide/', 'target' => '_blank'),
|
|
array('title' => esc_html__('Contact support', 'users-customers-import-export-for-wp-woocommerce'), 'icon' => 'headphone', 'href' => 'https://wordpress.org/plugins/users-customers-import-export-for-wp-woocommerce/', 'target' => '_blank'),
|
|
array('title' => esc_html__('Request a feature', 'users-customers-import-export-for-wp-woocommerce'), 'icon' => 'light-bulb-1'),
|
|
),
|
|
'hover_text' => esc_html__('Help', 'users-customers-import-export-for-wp-woocommerce'),
|
|
)
|
|
));
|
|
// phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped.
|
|
}
|
|
|
|
include $wf_admin_view_path."top_upgrade_header.php";
|