uawdijnntqw1x1x1
IP : 216.73.216.172
Hostname : webm041.cluster026.gra.hosting.ovh.net
Kernel : Linux webm041.cluster026.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
monikamovk
/
www
/
JAZlV
/
..
/
wp-content
/
.
/
plugins
/
wpforms-lite
/
src
/
SmartTags
/
SmartTag
/
AuthorId.php
/
/
<?php namespace WPForms\SmartTags\SmartTag; /** * Class AuthorId. * * @since 1.6.7 */ class AuthorId 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 int */ public function get_value( $form_data, $fields = [], $entry_id = '' ) { $id = get_the_author_meta( 'ID' ); if ( empty( $id ) && ! empty( $_POST['wpforms']['author'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing $id = get_the_author_meta( 'ID', absint( $_POST['wpforms']['author'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing } return absint( $id ); } }
/home/monikamovk/www/JAZlV/../wp-content/./plugins/wpforms-lite/src/SmartTags/SmartTag/AuthorId.php