File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/settings-options.php.tar
httpdocs/wp-content/plugins/yith-woocommerce-wishlist/plugin-options/settings-options.php 0000644 00000002624 15153767251 0034622 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
/**
* Settings options
*
* @package YITH\Wishlist\PluginOptions
*/
defined( 'YITH_WCWL' ) || exit; // Exit if accessed directly
$sub_tabs = array(
'settings-general' => array(
'title' => _x( 'General', 'Tab title in plugin settings panel', 'yith-woocommerce-wishlist' ),
'yith-wcwl-priority' => 20,
'description' => _x( 'Configure the plugin general settings.', 'Tab description in plugin settings panel', 'yith-woocommerce-wishlist' ),
),
'settings-add_to_wishlist' => array(
'title' => _x( 'Add to wishlist', 'Tab title in plugin settings panel', 'yith-woocommerce-wishlist' ),
'yith-wcwl-priority' => 20,
'description' => _x( 'Configure the Add to wishlist settings.', 'Tab description in plugin settings panel', 'yith-woocommerce-wishlist' ),
),
'settings-wishlist_page' => array(
'title' => _x( 'Wishlist page', 'Tab title in plugin settings panel', 'yith-woocommerce-wishlist' ),
'yith-wcwl-priority' => 20,
'description' => _x( 'Configure the wishlist page settings.', 'Tab description in plugin settings panel', 'yith-woocommerce-wishlist' ),
),
);
$options = array(
'settings' => array(
'settings-tabs' => array(
'type' => 'multi_tab',
'sub-tabs' => apply_filters( 'yith_wcwl_setting_options_sub_tabs', $sub_tabs ),
),
),
);
return apply_filters( 'yith_wcwl_panel_settings_options', $options );