# weforms/1.6.23/includes/class-form-entry-manager.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.6.23. 104 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.6.23/code/includes/class-form-entry-manager.php
- Raw: https://pluginprobe.com/plugins/weforms/1.6.23/raw/includes/class-form-entry-manager.php
- Modified: 2022-01-06T15:39:46+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/weforms/1.6.23/code/includes/class-form-entry-manager.php#L10-L20`.

```php
<?php

/**
 * The Entry Manager Class
 *
 * @since 1.1.0
 */
class WeForms_Form_Entry_Manager {

	/**
	 * The form id
	 *
	 * @var int
	 */
	private $id = 0;

	/**
	 * The form object
	 *
	 * @var \WeForms_Form
	 */
	private $form;

	/**
	 * The constructor
	 *
	 * @param int           $form_id
	 * @param \WeForms_Form $form
	 */
	public function __construct( $form_id, $form ) {
		$this->id   = $form_id;
		$this->form = $form;
	}

	/**
	 * Get all the form entries
	 *
	 * @return array
	 */
	public function all() {
		return weforms_get_form_entries( $this->id );
	}

	/**
	 * Get a single entry
	 *
	 * @param int $entry_id
	 *
	 * @return mixed
	 */
	public function get( $entry_id ) {
		return new WeForms_Form_Entry( $entry_id, $this->form );
	}

	/**
	 * Format Entry Value.
	 *
	 * @param  array $field Form Field data.
	 *
	 * @return array $field Formatted field data values.
	 */
	public static function format_entry_value( $field ) {
		switch ( $field['template'] ) {

			case 'radio_field':
				$value          = array_search( $field['value'], $field['options'], true );
				$field['value'] = esc_html( 'Option: ' . $field['value'] . ' - ' . 'Value: ' . $value );

				break;

			case 'checkbox_field':
				$field_formatted = array();
				foreach ( $field['value'] as $option ) {
					$value             = array_search( $option, $field['options'], true );
					$field_formatted[] = esc_html( 'Option: ' . $option . ' - ' . 'Value: ' . $value );
				}
				$field['value'] = array_replace( $field['value'], $field_formatted );

				break;

			case 'multiple_select':
				$field_formatted = array();
				foreach ( $field['value'] as $option ) {
					$value             = array_search( $option, $field['options'], true );
					$field_formatted[] = esc_html( 'Option: ' . $option . ' - ' . 'Value: ' . $value );
				}
				$field['value'] = array_replace( $field['value'], $field_formatted );

				break;

			case 'dropdown_field':
				$value          = array_search( $field['value'], $field['options'], true );
				$field['value'] = esc_html( 'Option: ' . $field['value'] . ' - ' . 'Value: ' . $value );

				break;

			default:
				// Do nothing if value format does not need to be changed.
				break;
		}
		return $field;
	}
}

```
