Add welcome_wizard_url variable
MAILPOET-4797
This commit is contained in:
committed by
Aschepikov
parent
2ebcad1468
commit
974d2d5a59
1
mailpoet/assets/js/src/global.d.ts
vendored
1
mailpoet/assets/js/src/global.d.ts
vendored
@@ -170,4 +170,5 @@ interface Window {
|
|||||||
mailpoet_listing: {
|
mailpoet_listing: {
|
||||||
forceUpdate: () => void;
|
forceUpdate: () => void;
|
||||||
};
|
};
|
||||||
|
mailpoet_welcome_wizard_url: string;
|
||||||
}
|
}
|
||||||
|
@@ -3,18 +3,28 @@
|
|||||||
namespace MailPoet\AdminPages\Pages;
|
namespace MailPoet\AdminPages\Pages;
|
||||||
|
|
||||||
use MailPoet\AdminPages\PageRenderer;
|
use MailPoet\AdminPages\PageRenderer;
|
||||||
|
use MailPoet\Config\Menu;
|
||||||
|
use MailPoet\WP\Functions as WPFunctions;
|
||||||
|
|
||||||
class Landingpage {
|
class Landingpage {
|
||||||
/** @var PageRenderer */
|
/** @var PageRenderer */
|
||||||
private $pageRenderer;
|
private $pageRenderer;
|
||||||
|
|
||||||
|
/** @var WPFunctions */
|
||||||
|
private $wp;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
PageRenderer $pageRenderer
|
PageRenderer $pageRenderer,
|
||||||
|
WPFunctions $wp
|
||||||
) {
|
) {
|
||||||
$this->pageRenderer = $pageRenderer;
|
$this->pageRenderer = $pageRenderer;
|
||||||
|
$this->wp = $wp;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function render() {
|
public function render() {
|
||||||
$this->pageRenderer->displayPage('landingpage.html');
|
$data = [
|
||||||
|
'welcome_wizard_url' => $this->wp->adminUrl('admin.php?page=' . Menu::WELCOME_WIZARD_PAGE_SLUG),
|
||||||
|
];
|
||||||
|
$this->pageRenderer->displayPage('landingpage.html', $data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,12 +2,20 @@
|
|||||||
|
|
||||||
<% block content %>
|
<% block content %>
|
||||||
<div id="mailpoet_landingpage_container"></div>
|
<div id="mailpoet_landingpage_container"></div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
<% autoescape 'js' %>
|
||||||
|
var mailpoet_welcome_wizard_url = <%= json_encode(welcome_wizard_url) %>;
|
||||||
|
<% endautoescape %>
|
||||||
|
</script>
|
||||||
<% endblock %>
|
<% endblock %>
|
||||||
|
|
||||||
<% block translations %>
|
<% block translations %>
|
||||||
<%= localize({
|
<%= localize({
|
||||||
'betterEmailWithoutLeavingWordPress': __('Better email — without leaving WordPress'),
|
'betterEmailWithoutLeavingWordPress': __('Better email — without leaving WordPress'),
|
||||||
'startingOutOrEstablished': __('Whether you’re just starting out or have already established your business, we’ve got what you need to reach customers where they are'),
|
'startingOutOrEstablished': __('Whether you’re just starting out or have already established your business, we’ve got what you need to reach customers where they are'),
|
||||||
|
'beginSetup': __('Begin setup'),
|
||||||
|
'readyToUseMailPoet': __('Ready to use MailPoet?'),
|
||||||
}) %>
|
}) %>
|
||||||
<% endblock %>
|
<% endblock %>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user