# propertyhive/2.2.2/templates/account/dashboard.php

Property Hive, version 2.2.2. 25 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.2/code/templates/account/dashboard.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.2/raw/templates/account/dashboard.php
- Modified: 2025-05-13T08:38:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.2/code/templates/account/dashboard.php#L10-L20`.

```php
<?php
/**
 * Outputs the dashboard contents
 *
 * This template can be overridden by copying it to yourtheme/propertyhive/account/dashboard.php.
 *
 * @author      PropertyHive
 * @package     PropertyHive/Templates
 * @version     1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $current_user;
?>

<p><?php
	echo esc_html(__( 'Hello', 'propertyhive' ));
	echo ' <strong>' . esc_html($current_user->display_name) . '</strong>.';
?></p>

<p><?php
	echo esc_html(__('From within your account you can manage your details and amend your requirements.', 'propertyhive' ));
?></p>

<?php do_action( 'propertyhive_account_dashboard' );
```
