47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\AdminPages\Pages;
|
|
|
|
use MailPoet\AdminPages\PageRenderer;
|
|
use MailPoet\Form\Block;
|
|
use MailPoet\Models\ModelValidator;
|
|
use MailPoet\Subscribers\ImportExport\ImportExportFactory;
|
|
use MailPoet\Util\Installation;
|
|
|
|
class SubscribersImport {
|
|
/** @var PageRenderer */
|
|
private $pageRenderer;
|
|
|
|
/** @var Installation */
|
|
private $installation;
|
|
|
|
/** @var Block\Date */
|
|
private $dateBlock;
|
|
|
|
public function __construct(
|
|
PageRenderer $pageRenderer,
|
|
Installation $installation,
|
|
Block\Date $dateBlock
|
|
) {
|
|
$this->pageRenderer = $pageRenderer;
|
|
$this->installation = $installation;
|
|
$this->dateBlock = $dateBlock;
|
|
}
|
|
|
|
public function render() {
|
|
$import = new ImportExportFactory(ImportExportFactory::IMPORT_ACTION);
|
|
$data = $import->bootstrap();
|
|
$data = array_merge($data, [
|
|
'date_types' => $this->dateBlock->getDateTypes(),
|
|
'date_formats' => $this->dateBlock->getDateFormats(),
|
|
'month_names' => $this->dateBlock->getMonthNames(),
|
|
'sub_menu' => 'mailpoet-subscribers',
|
|
'role_based_emails' => json_encode(ModelValidator::ROLE_EMAILS),
|
|
]);
|
|
|
|
$data['is_new_user'] = $this->installation->isNewInstallation();
|
|
|
|
$this->pageRenderer->displayPage('subscribers/importExport/import.html', $data);
|
|
}
|
|
}
|