PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
wpforms
/
src
/
Pro
/
SmartTags
/
SmartTag
<?php namespace WPForms\Pro\SmartTags\SmartTag; use WPForms\SmartTags\SmartTag\SmartTag; /** * Class EntryDate. * * @since 1.6.7 */ class EntryDate 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 = '' ) { if ( empty( $entry_id ) ) { return ''; } $entry = wpforms()->entry->get( $entry_id ); if ( ! $entry || ! property_exists( $entry, 'date' ) ) { return ''; } $attributes = $this->get_attributes(); $format = ! empty( $attributes['format'] ) ? $attributes['format'] : get_option( 'date_format' ); return wpforms_datetime_format( $entry->date, $format, true ); } }
[+]
..
[-] EntryId.php
[edit]
[-] EntryDate.php
[edit]