![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/give/src/Donors/ |
<?php namespace Give\Donors; use Give\Helpers\EnqueueScript; class DonorsAdminPage { /** * Root URL for this page's endpoints * @var string */ private $apiRoot; /** * Nonce for authentication with WP REST API * @var string */ private $apiNonce; /** * @since 2.20.0 */ public function __construct() { $this->apiRoot = esc_url_raw(rest_url('give-api/v2/admin/donors')); $this->apiNonce = wp_create_nonce('wp_rest'); } /** * @since 2.20.0 */ public function registerMenuItem() { remove_submenu_page( 'edit.php?post_type=give_forms', 'give-donors' ); add_submenu_page( 'edit.php?post_type=give_forms', esc_html__('Donors', 'give'), esc_html__('Donors', 'give'), 'edit_give_forms', 'give-donors', [$this, 'render'], 5 ); } /** * @since 2.20.0 */ public function loadScripts() { $data = [ 'apiRoot' => $this->apiRoot, 'apiNonce' => $this->apiNonce, 'preload' => $this->preloadDonors(), 'forms' => $this->getForms(), ]; EnqueueScript::make('give-admin-donors', 'assets/dist/js/give-admin-donors.js') ->loadInFooter() ->registerTranslations() ->registerLocalizeData('GiveDonors', $data)->enqueue(); wp_enqueue_style( 'give-admin-ui-font', 'https://fonts.googleapis.com/css2?family=Open+Sans:[email protected]&display=swap', [], null ); } /** * Make REST request to Donors endpoint before page load * @since 2.20.0 */ public function preloadDonors(){ $queryParameters = [ 'page' => 1, 'perPage' => 30, 'search' => '', ]; $url = add_query_arg( $queryParameters, $this->apiRoot ); $request = \WP_REST_Request::from_url($url); $response = rest_do_request($request); return $response->get_data(); } /** * Preload initial table data * @since 2.20.0 */ public function getForms(){ $queryParameters = [ 'page' => 1, 'perPage' => 50, 'search' => '', 'status' => 'any' ]; $url = esc_url_raw(add_query_arg( $queryParameters, rest_url('give-api/v2/admin/forms') )); $request = \WP_REST_Request::from_url($url); $response = rest_do_request($request); $response = $response->get_data(); $forms = $response['items']; $emptyOption = [ [ 'value' => '0', 'text' => 'Any', ] ]; $formOptions = array_map(function($form){ return [ 'value' => $form['id'], 'text' => $form['name'], ]; }, $forms); return array_merge($emptyOption, $formOptions); } /** * Render admin page container * @since 2.20.0 */ public function render() { echo '<div id="give-admin-donors-root"></div>'; } /** * Display a button on the old donation forms table that switches to the React view * * @since 2.20.0 */ public function renderReactSwitch() { ?> <script type="text/javascript"> function showReactTable () { fetch( '<?php echo esc_url_raw(rest_url('give-api/v2/admin/donors/view?isLegacy=0')) ?>', { method: 'GET', headers: { ['X-WP-Nonce']: '<?php echo wp_create_nonce('wp_rest') ?>' } }) .then((res) => { window.location.reload(); }); } jQuery( function() { jQuery(jQuery(".wrap .wp-header-end")).before( '<button class="page-title-action" onclick="showReactTable()">Switch to New View</button>' ); }); </script> <?php } /** * Helper function to determine if current page is Give Donors admin page * @since 2.20.0 * * @return bool */ public static function isShowing() { return isset($_GET['page']) && $_GET['page'] === 'give-donors' && !isset($_GET['id']); } }