HEX
Server: Apache/2
System: Linux s01 6.1.0-34-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.135-1 (2025-04-25) x86_64
User: beestg (1003)
PHP: 8.3.27
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/beestg/public_html/wp-content/plugins/wp-whatsapp-chat/lib/entities/class-box.php
<?php
namespace QuadLayers\QLWAPP\Entities;

use QuadLayers\WP_Orm\Entity\SingleEntity;

class Box extends SingleEntity {
	public $enable          = 'yes';
	public $auto_open       = 'no';
	public $auto_delay_open = 1000;
	public $lazy_load       = 'no';
	public $header          = '<h3 style="
									font-size: 26px;
									font-weight: bold;
									margin: 0 0 0.25em 0;
								">Hello!</h3>
								<p style="
									font-size: 14px;
								">Click one of our contacts below to chat on WhatsApp</p>';
	public $footer          = '<p style="text-align: start;">Social Chat is free, download and try it now <a target="_blank" href="' . QLWAPP_LANDING_URL . '">here!</a></p>';
	public $response;

	public function __construct() {
		$this->response = esc_html__( 'Write a response', 'wp-whatsapp-chat' );
	}
}