HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/api/events/events.users.php
<?php

/**
* This class defines the data to be passed through to the event it is named after.
*
* BeforeDisplay is fired...
*
* This event is not cancellable
*
*/
class iwp_event_users_beforeprofiledisplay extends iwp_event_base
{
	/**
	* The current instance of iwp_user
	*
	* @var iwp_content
	*/
	public $user;

	/**
	* Constructor
	*
	* @param iwp_content $content The current instance of iwp_user
	* @return iwp_event_user_beforeprofiledisplay
	*/
	public function __construct (iwp_user &$user)
	{
		$this->user = &$user;
		parent::__construct(false);
	}
}