# woorewards/trunk/include/ui/widget.php

MyRewards, version trunk. 70 lines.

- Page: https://pluginprobe.com/plugins/woorewards/trunk/code/include/ui/widget.php
- Raw: https://pluginprobe.com/plugins/woorewards/trunk/raw/include/ui/widget.php
- Modified: 2026-02-11T09:28:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woorewards/trunk/code/include/ui/widget.php#L10-L20`.

```php
<?php

namespace LWS\WOOREWARDS\Ui;

// don't call the file directly
if (!defined('ABSPATH')) exit();

/** Provide a widget to let display rewards.
 * Can be used as a Widget, a Shortcode [lws_rewards] or a Guttenberg block (soon).
 * Rewards can be filtered by pool
 * For a looged in user, we can filter only the unlockable ones. */
class Widget extends \WP_Widget
{
	static protected function register($className)
	{
		\add_action('widgets_init', function () use ($className) {
			\register_widget($className);
		});
	}

	/** echo a form select line @param $options (array) value=>text */
	protected function eFormFieldSelect($id, $label, $name, $options, $value)
	{
		$input = "<select class='widefat' id='$id' name='$name'>";
		foreach ($options as $v => $txt) {
			$selected = $v == $value ? ' selected' : '';
			$input .= "<option value='$v'$selected>$txt</option>";
		}
		$input .= "</select>";
		$this->eFormField($id, $label, $input);
	}

	/** echo a form text line */
	protected function eFormFieldText($id, $label, $name, $value, $placeholder = '', $type = 'text')
	{
		$input = "<input class='widefat' id='$id' name='$name' type='$type' value='$value' placeholder='$placeholder'/>";
		$this->eFormField($id, $label, $input);
	}

	/** echo a form radio line */
	protected function eFormFieldRadio($id, $label, $name, $options, $value)
	{
		$input = '';
		foreach ($options as $v => $txt) {
			$selected = $v == $value ? ' checked' : '';
			$input .= "<input type='radio' style='margin:0 5px 0 15px;' name='$name' value='$v'$selected>$txt";
		}
		$this->eFormField($id, $label, $input);
	}

	/** echo a checkbox */
	protected function eFormFieldCheckbox($id, $label, $name, $value)
	{
		echo sprintf(
			'<p><input class="checkbox" id="%s" name="%s" type="checkbox" %s/>',
			\esc_attr($id),
			\esc_attr($name),
			$value ? ' checked' : ''
		);
		echo "<label for='" . esc_attr($id) . "'>" . esc_html($label) . "</label></p>";
	}

	/** echo a form entry line */
	protected function eFormField($id, $label, $input)
	{
		echo "<p><label for='" . esc_attr($id) . "'>" . esc_html($label) . "</label>";
		echo $input;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo "</p>";
	}
}
```
