HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: /home/honghock/www/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 $allow_outside_close  = '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;">Need help? Our team is just a message away</p>';
	public $response;

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