class-listing-submit-details-page.php
<?php
namespace HivePress\Templates;
use HivePress\Helpers as hp;
defined( 'ABSPATH' ) || exit;
class Listing_Submit_Details_Page extends Listing_Submit_Page {
public static function init( $meta = [] ) {
$meta = hp\merge_arrays(
[
'label' => hivepress()->translator->get_string( 'add_listing' ) . ' (' . hivepress()->translator->get_string( 'details' ) . ')',
],
$meta
);
parent::init( $meta );
}
public function __construct( $args = [] ) {
$args = hp\merge_trees(
[
'blocks' => [
'page_content' => [
'blocks' => [
'listing_submit_form' => [
'type' => 'form',
'form' => 'listing_submit',
'_label' => hivepress()->translator->get_string( 'form' ),
'_order' => 10,
],
],
],
],
],
$args
);
parent::__construct( $args );
}
}