Your IP : 216.73.216.95


Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/give/blocks/donor-wall/data/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/give/blocks/donor-wall/data/options.js

/**
 * WordPress dependencies
 */
const { __ } = wp.i18n;

/**
 * Options data for various form selects
 */
const giveDonorWallOptions = {};

// Form Display Styles
giveDonorWallOptions.columns = [
	{ value: 'best-fit', label: __( 'Best Fit' ) },
	{ value: '1', label: '1' },
	{ value: '2', label: '2' },
	{ value: '3', label: '3' },
	{ value: '4', label: '4' },
];

// Order
giveDonorWallOptions.order = [
	{ value: 'DESC', label: __( 'Descending' ) },
	{ value: 'ASC', label: __( 'Ascending' ) },
];

// Order
giveDonorWallOptions.orderBy = [
	{ value: 'donation_amount', label: __( 'Donation Amount' ) },
	{ value: 'post_date', label: __( 'Date Created' ) },
];

export default giveDonorWallOptions;