PluginProbe
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress / trunk
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress vtrunk
11.0.5 11.0.4 11.0.3 11.0.2 11.0.1 11.0.0 10.11.1 10.11.0 10.10.2 10.10.1 10.10.0 10.9.1 trunk 10.0.0 10.0.1 10.1.0 10.1.1 10.1.2 10.1.3 10.1.4 10.2.0 10.2.1 10.2.2 10.3.0 10.4.0 All 60 releases
acymailing / front / FrontViews / Frontcampaigns / FrontcampaignsView.php

FrontcampaignsView.php in AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress trunk, at front/FrontViews/Frontcampaigns/FrontcampaignsView.php

32 lines 729 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace AcyMailing\FrontViews\Frontcampaigns;
4
5 use AcyMailing\Core\AcymView;
6
7 class FrontcampaignsView extends AcymView
8 {
9 public function __construct()
10 {
11 $this->steps = [
12 'chooseTemplate' => 'ACYM_CHOOSE_TEMPLATE',
13 'editEmail' => 'ACYM_EDIT_EMAIL',
14 'recipients' => 'ACYM_RECIPIENTS',
15 'sendSettings' => 'ACYM_SEND_SETTINGS',
16 'summary' => 'ACYM_SUMMARY',
17 ];
18
19 $this->tabs = [
20 'campaigns' => 'ACYM_CAMPAIGNS',
21 'welcome' => 'ACYM_WELCOME_EMAILS',
22 'unsubscribe' => 'ACYM_UNSUBSCRIBE_EMAILS',
23 ];
24
25 parent::__construct();
26 }
27
28 public function addSegmentStep($data)
29 {
30 }
31 }
32