Server IP : 104.21.38.3 / Your IP : 172.70.147.173 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/wpforms-lite/src/Emails/Templates/ |
Upload File : |
<?php namespace WPForms\Emails\Templates; use WPForms\Emails\Helpers; /** * Class Notifications. * * This is a wrapper for the General template to extend it. * This is the default template for all notifications. * * @since 1.8.5 */ class Notifications extends General { /** * Whether is preview or not. * * @since 1.8.5 * * @var bool */ protected $is_preview = false; /** * Initialize class. * In case the class instance meant for preview, we need to set the plain text property to false. * * @since 1.8.5 * @since 1.8.5.2 New param was added, $current_template * * @param string $message Optional. Message. * @param bool $is_preview Optional. Whether is preview or not. Default false. * @param string $current_template Optional. The name of the email template to evaluate. */ public function __construct( $message = '', $is_preview = false, $current_template = '' ) { parent::__construct( $message ); $this->is_preview = $is_preview; $this->plain_text = ! $is_preview && Helpers::is_plain_text_template( $current_template ); // Call the parent method after to set the correct header properties. $this->set_initial_args(); } /** * Set template message. * * @since 1.8.5 * * @param string $message Message. */ public function set_field( $message ) { // Leave if not a string. if ( ! is_string( $message ) ) { return; } // Set the template message. $this->set_args( [ 'body' => [ 'message' => $message, ], ] ); } /** * Get field template. * * @since 1.8.5 * * @return string */ public function get_field_template() { return $this->get_content_part( 'field' ); } }