whoami7 - Manager
:
/
home
/
techyfnq
/
www
/
wp-content
/
plugins
/
easy-digital-downloads
/
src
/
Admin
/
Settings
/
Upload File:
files >> //home/techyfnq/www/wp-content/plugins/easy-digital-downloads/src/Admin/Settings/Reviews.php
<?php /** * Reviews * * Manages automatic activation for Reviews. * * @package EDD * @subpackage Reviews * @copyright Copyright (c) 2021, Easy Digital Downloads * @license https://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 2.11.4 */ namespace EDD\Admin\Settings; use \EDD\Admin\Extensions\Extension; use EDD\EventManagement\SubscriberInterface; class Reviews extends Extension implements SubscriberInterface { /** * The product ID on EDD. * * @var integer */ protected $item_id = 37976; /** * The EDD settings tab where this extension should show. * * @since 2.11.4 * @var string */ protected $settings_tab = 'marketing'; /** * The settings section for this item. * * @since 2.11.5 * @var string */ protected $settings_section = 'reviews'; /** * The pass level required to access this extension. */ const PASS_LEVEL = \EDD\Admin\Pass_Manager::EXTENDED_PASS_ID; /** * Returns an array of events that this subscriber wants to listen to. * * @since 3.1.1 * @return array */ public static function get_subscribed_events() { return array( 'edd_settings_sections_marketing' => 'add_section', 'edd_settings_tab_top_marketing_reviews' => 'settings_field', 'edd_settings_tab_bottom_marketing_reviews' => 'hide_submit_button', 'add_meta_boxes' => 'maybe_do_metabox', ); } /** * Gets the custom configuration for Reviews. * * @since 2.11.4 * @param \EDD\Admin\Extensions\ProductData $product_data The product data object. * @return array */ protected function get_configuration( \EDD\Admin\Extensions\ProductData $product_data ) { $configuration = array( 'heading' => 'Build Trust With Real Customer Reviews', ); $settings_configuration = array( 'style' => 'detailed-2col', 'description' => $this->get_custom_description(), 'features' => array( 'Request Reviews', 'Incentivize Reviewers', 'Full Schema.org Support', 'Embed Reviews Via Blocks', 'Limit Reviews to Customers', 'Vendor Reviews (with Frontend Submissions)', ), ); return $this->is_edd_settings_screen() ? array_merge( $configuration, $settings_configuration ) : $configuration; } /** * Gets a custom description for the Reviews extension card. * * @since 2.11.4 * @return string */ private function get_custom_description() { $description = array( 'Increase sales on your site with social proof. 70% of online shoppers don\'t purchase before reading reviews.', 'Easily collect, manage, and beautifully display reviews all from your WordPress dashboard.', ); return $this->format_description( $description ); } /** * Adds the Reviews section to the settings. * * @param array $sections * @return array */ public function add_section( $sections ) { if ( ! $this->can_show_product_section() ) { return $sections; } $sections[ $this->settings_section ] = __( 'Reviews', 'easy-digital-downloads' ); return $sections; } /** * If Reviews is not active, registers a metabox on individual download edit screen. * * @since 2.11.4 * @return void */ public function maybe_do_metabox() { if ( ! $this->is_download_edit_screen() ) { return; } if ( $this->is_activated() ) { return; } add_meta_box( 'edd-reviews-status', __( 'Product Reviews', 'easy-digital-downloads' ), array( $this, 'settings_field' ), 'download', 'side', 'low' ); } /** * Whether EDD Reviews active or not. * * @since 2.11.4 * * @return bool True if Reviews is active. */ protected function is_activated() { if ( $this->manager->is_plugin_active( $this->get_product_data() ) ) { return true; } return function_exists( 'edd_reviews' ); } }
Copyright ©2021 || Defacer Indonesia