PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
wpforms
/
src
/
SmartTags
/
SmartTag
<?php namespace WPForms\SmartTags\SmartTag; /** * Class FieldValueId. * * @since 1.6.7 */ class FieldValueId extends SmartTag { /** * Get smart tag value. * * @since 1.6.7 * * @param array $form_data Form data. * @param array $fields List of fields. * @param string $entry_id Entry ID. * * @return string */ public function get_value( $form_data, $fields = [], $entry_id = '' ) { $attributes = $this->get_attributes(); if ( ! isset( $attributes['field_value_id'] ) || $attributes['field_value_id'] === '' ) { return ''; } $field_id = $attributes['field_value_id']; if ( ! isset( $fields[ $field_id ] ) || $fields[ $field_id ] === '' ) { return ''; } if ( isset( $fields[ $field_id ]['value_raw'] ) && ! is_array( $fields[ $field_id ]['value_raw'] ) && (string) $fields[ $field_id ]['value_raw'] !== '' ) { return wpforms_sanitize_textarea_field( $fields[ $field_id ]['value_raw'] ); } return isset( $fields[ $field_id ]['value'] ) ? wpforms_sanitize_textarea_field( $fields[ $field_id ]['value'] ) : ''; } }
[-] FormId.php
[edit]
[-] PageId.php
[edit]
[+]
..
[-] Date.php
[edit]
[-] UserMeta.php
[edit]
[-] AuthorDisplay.php
[edit]
[-] AuthorId.php
[edit]
[-] UrlLogin.php
[edit]
[-] UrlReferer.php
[edit]
[-] FieldHtmlId.php
[edit]
[-] PageUrl.php
[edit]
[-] UserFirstName.php
[edit]
[-] PageTitle.php
[edit]
[-] UserEmail.php
[edit]
[-] UserFullName.php
[edit]
[-] UserIp.php
[edit]
[-] UserId.php
[edit]
[-] AdminEmail.php
[edit]
[-] FieldValueId.php
[edit]
[-] FieldId.php
[edit]
[-] Generic.php
[edit]
[-] QueryVar.php
[edit]
[-] UrlRegister.php
[edit]
[-] UserLastName.php
[edit]
[-] UrlLogout.php
[edit]
[-] AuthorEmail.php
[edit]
[-] UserDisplay.php
[edit]
[-] FormName.php
[edit]
[-] UrlLostPassword.php
[edit]
[-] SmartTag.php
[edit]