128 lines
3.3 KiB
PHP
128 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: Woo Test Helper
|
|
* Description: A helper plugin to control settings within Woo e2e tests.
|
|
* Version: 0.0.1
|
|
* Author: Automattic
|
|
* Author URI: https://automattic.com
|
|
* Text Domain: woo-test-helper
|
|
* Requires at least: 5.9
|
|
* Requires PHP: 7.3
|
|
* WC requires at least: 6.0
|
|
* WC tested up to: 6.1
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Woo Test Helper
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Define URL endpoints for setting up and tearing down the T&C and Privacy Policy pages.
|
|
*/
|
|
function woocommerce_setup_terms_and_privacy_page() {
|
|
// phpcs:disable WordPress.Security.NonceVerification.Recommended
|
|
if ( isset( $_GET['setup_terms_and_privacy'] ) ) {
|
|
publish_privacy_page();
|
|
publish_terms_page();
|
|
exit( 'Terms & Privacy pages set up.' );
|
|
}
|
|
|
|
// phpcs:disable WordPress.Security.NonceVerification.Recommended
|
|
if ( isset( $_GET['teardown_terms_and_privacy'] ) ) {
|
|
unpublish_privacy_page();
|
|
delete_terms_page();
|
|
exit( 'Terms & Privacy pages teared down.' );
|
|
}
|
|
}
|
|
add_action( 'init', 'woocommerce_setup_terms_and_privacy_page' );
|
|
|
|
/**
|
|
* Publish Privacy Policy page.
|
|
*/
|
|
function publish_privacy_page() {
|
|
global $wpdb;
|
|
|
|
$table = $wpdb->prefix . 'posts';
|
|
$data = array( 'post_status' => 'publish' );
|
|
$where = array(
|
|
'post_title' => 'Privacy Policy',
|
|
'post_status' => 'draft',
|
|
);
|
|
$wpdb->update( $table, $data, $where );
|
|
}
|
|
|
|
/**
|
|
* Publish and set Terms & Conditions page.
|
|
*/
|
|
function publish_terms_page() {
|
|
global $wpdb;
|
|
|
|
$table = $wpdb->prefix . 'posts';
|
|
$data = array(
|
|
'post_title' => 'Terms & Conditions',
|
|
'post_status' => 'publish',
|
|
'post_type' => 'page',
|
|
'post_author' => 1,
|
|
);
|
|
$wpdb->replace( $table, $data );
|
|
update_option( 'woocommerce_terms_page_id', $wpdb->insert_id );
|
|
}
|
|
|
|
/**
|
|
* Unpublish Privacy Policy page.
|
|
*/
|
|
function unpublish_privacy_page() {
|
|
global $wpdb;
|
|
|
|
$table = $wpdb->prefix . 'posts';
|
|
$data = array( 'post_status' => 'draft' );
|
|
$where = array(
|
|
'post_title' => 'Privacy Policy',
|
|
'post_status' => 'publish',
|
|
);
|
|
$wpdb->update( $table, $data, $where );
|
|
}
|
|
|
|
/**
|
|
* Delete Terms & Conditions page.
|
|
*/
|
|
function delete_terms_page() {
|
|
global $wpdb;
|
|
|
|
$table = $wpdb->prefix . 'posts';
|
|
$data = array( 'post_title' => 'Terms & Conditions' );
|
|
$wpdb->delete( $table, $data );
|
|
}
|
|
|
|
/**
|
|
* Define URL endpoint for setting up cross-sells products.
|
|
*/
|
|
function woocommerce_setup_cross_sells_products() {
|
|
// phpcs:disable WordPress.Security.NonceVerification.Recommended
|
|
if ( isset( $_GET['setup_cross_sells'] ) ) {
|
|
setup_cross_sells();
|
|
exit( 'Cross-Sells products set up.' );
|
|
}
|
|
}
|
|
add_action( 'init', 'woocommerce_setup_cross_sells_products' );
|
|
|
|
/**
|
|
* Set up Cross-Sells products.
|
|
*/
|
|
function setup_cross_sells() {
|
|
global $wpdb;
|
|
|
|
// phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
|
|
$select = "SELECT * FROM {$wpdb->prefix}posts WHERE post_title = '128GB USB Stick' AND post_status = 'publish' AND post_type = 'product'";
|
|
$id_products = $wpdb->get_results( $select );
|
|
|
|
// phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
|
|
$select = "SELECT * FROM {$wpdb->prefix}posts WHERE post_title = '32GB USB Stick' AND post_status = 'publish' AND post_type = 'product'";
|
|
$id_cross_sells = $wpdb->get_results( $select );
|
|
|
|
foreach ( $id_products as $id_product ) {
|
|
update_post_meta( $id_product->ID, '_crosssell_ids', wp_list_pluck( $id_cross_sells, 'ID' ) );
|
|
}
|
|
}
|