
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php


namespace JFB_Modules\Bulk_Options;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

use JFB_Modules\Bulk_Options\Interfaces\Source_Resolve_Interface;

class Days_Source_Resolver implements Source_Resolve_Interface {

	public function rep_item_id() {
		return 'days';
	}

	public function get_label(): string {
		return __( 'Days', 'jet-form-builder' );
	}

	public function resolve(): array {
		/** @noinspection PhpUnhandledExceptionInspection */
		/** @var Module $module */
		$module = jet_form_builder()->module( 'bulk-options' );

		return require_once $module->get_dir( 'sources/days.php' );
	}
}
