![]() Server : Apache/2.4.52 (Ubuntu) System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64 User : www-data ( 33) PHP Version : 8.1.2-1ubuntu2.21 Disable Function : NONE Directory : /var/www/theprintave/wp-content/plugins/dokan-lite/includes/Admin/ |
<?php namespace WeDevs\Dokan\Admin; use WeDevs\Dokan\Abstracts\DokanPromotion; /** * Promotion class * * For displaying AI base add on admin panel */ class Promotion extends DokanPromotion { /** * Time interval for displaying promo * * @var integer */ public $time_interval = 60 * 60 * 24 * 7; /** * Promo option key * * @var string */ public $promo_option_key = '_dokan_free_upgrade_promo'; /** * Get prmotion data * * @since 1.0.0 * * @return void */ public function get_promotion_data() { if ( ! dokan()->is_pro_exists() ) { return array( 'product_subscription' => array( 'title' => __( 'Create Customizable Paid Subscription Packs For Your Vendors', 'dokan-lite' ), 'content' => __( 'By using this module, make it mandatory for your vendors to buy a subscription pack to sell products in your marketplace.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Subscriptions.jpg', 'link' => 'https://wedevs.com/dokan/pricing/?utm_source=dokan-plugin&utm_medium=banner&utm_content=booking-integration&utm_campaign=upgrade-to-pro', 'priority' => 10, ), 'vendor_reviews' => array( 'title' => __( 'Increase conversions 270% by displaying reviews', 'dokan-lite' ), 'content' => __( 'This extension enables your customers to post a review for each store available on your site.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Vendor-Review-1.png', 'link' => 'https://wedevs.com/dokan/pricing/?utm_source=dokan-plugin&utm_medium=banner&utm_content=booking-integration&utm_campaign=upgrade-to-pro', 'priority' => 20, ), 'vendor_verification' => array( 'title' => __( 'Verify Your Sellers To Earn Customer Reliability', 'dokan-lite' ), 'content' => __( 'Allow your vendors to verify their stores using social profiles, phone, photo ID etc. using this advanced and handy module.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Dokan-Seller-Verification.jpg', 'link' => 'https://wedevs.com/dokan/pricing/?utm_source=dokan-plugin&utm_medium=banner&utm_content=booking-integration&utm_campaign=upgrade-to-pro', 'priority' => 30, ), 'multiple_commission' => array( 'title' => __( 'Earn more from multiple commission type', 'dokan-lite' ), 'content' => __( 'With this feature, you will be able to set different type of commission for each vendor according to the products they are selling. Meaning more earning for you.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Earn-more-from-multiple-commission-type_Newsletter.png', 'link' => 'https://wedevs.com/dokan/pricing/#dokan-compare-table-section/?utm_source=dokan-plugin&utm_medium=banner&utm_content=multiple-comission-type&utm_campaign=upgrade-to-pro', 'priority' => 40, ), 'ticket_priority_support' => array( 'title' => __( 'Get priority support 24/7/365', 'dokan-lite' ), 'content' => __( 'Need to solve a conflict with your plugins, have a theme layout issues with Dokan or any kind of problem you might face, we are here for you', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Get-priority-support-24_7_365_Newsletter.png', 'link' => 'https://wedevs.com/dokan/pricing/?utm_source=dokan-plugin&utm_medium=banner&utm_content=customer-support&utm_campaign=upgrade-to-pro', 'priority' => 50, ), 'coupon_code' => array( 'title' => __( '97% of consumers look for deals when they shop', 'dokan-lite' ), 'content' => __( 'No matter what type of coupon you want to create you can do that easily using the pro version of Dokan. Set the coupon title, fix discount types, restrict email addresses and much more.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/97-of-consumers-look-for-deals-when-they-shop_Newsletter.png', 'link' => 'https://wedevs.com/dokan/pricing/#dokan-compare-table-section/?utm_source=dokan-plugin&utm_medium=banner&utm_content=coupon-code-generation&utm_campaign=upgrade-to-pro', 'priority' => 60, ), 'premium_modules' => array( 'title' => __( 'Exciting premium features to take your marketplace', 'dokan-lite' ), 'content' => __( 'With the simplest configuration options available, only by enabling a single toggle button you will be able to do everything your competitors are doing and even more.', 'dokan-lite' ), 'thumbnail' => DOKAN_PLUGIN_ASSEST . '/images/promotions/Exciting-premium-features-to-take-your-marketplace-to-the-next-level.png', 'link' => 'https://wedevs.com/dokan/pricing/#dokan-compare-table-section/?utm_source=dokan-plugin&utm_medium=banner&utm_content=exciting-premium-features&utm_campaign=upgrade-to-pro', 'priority' => 70, ), ); }; } }