class-user-password-reset-page.php
<?php
/**
* User password reset page template.
*
* @package HivePress\Templates
*/
namespace HivePress\Templates;
use HivePress\Helpers as hp;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Password reset page.
*/
class User_Password_Reset_Page extends Page_Narrow {
/**
* Class initializer.
*
* @param array $meta Class meta values.
*/
public static function init( $meta = [] ) {
$meta = hp\merge_arrays(
[
'label' => esc_html__( 'Reset Password', 'hivepress' ),
],
$meta
);
parent::init( $meta );
}
/**
* Class constructor.
*
* @param array $args Template arguments.
*/
public function __construct( $args = [] ) {
$args = hp\merge_trees(
[
'blocks' => [
'page_content' => [
'blocks' => [
'user_password_reset_form' => [
'type' => 'user_password_reset_form',
'_label' => hivepress()->translator->get_string( 'form' ),
'_order' => 10,
],
],
],
],
],
$args
);
parent::__construct( $args );
}
}