Add Blank category to templates
[MAILPOET-2345]
This commit is contained in:
committed by
Jack Kitterhing
parent
47ebcf3b84
commit
1dd0c4ec70
@ -21,7 +21,7 @@ class NewsletterBlank121Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Newsletter: Blank 1:2:1 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['standard']),
|
||||
'categories' => json_encode(['standard', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class NewsletterBlank12Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Newsletter: Blank 1:2 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['standard']),
|
||||
'categories' => json_encode(['standard', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class NewsletterBlank13Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Newsletter: Blank 1:3 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['standard']),
|
||||
'categories' => json_encode(['standard', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class NewsletterBlank1Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Newsletter: Blank 1 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['standard']),
|
||||
'categories' => json_encode(['standard', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class PostNotificationsBlank1Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Post Notifications: Blank 1 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['notification']),
|
||||
'categories' => json_encode(['notification', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class WelcomeBlank12Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Welcome Email: Blank 1:2 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['welcome']),
|
||||
'categories' => json_encode(['welcome', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
@ -21,7 +21,7 @@ class WelcomeBlank1Column {
|
||||
function get() {
|
||||
return [
|
||||
'name' => WPFunctions::get()->__("Welcome Email: Blank 1 Column", 'mailpoet'),
|
||||
'categories' => json_encode(['welcome']),
|
||||
'categories' => json_encode(['welcome', 'blank']),
|
||||
'readonly' => 1,
|
||||
'thumbnail' => $this->getThumbnail(),
|
||||
'body' => json_encode($this->getBody()),
|
||||
|
Reference in New Issue
Block a user