Files
piratepoet/lib/Models/Form.php
Jan Jakeš 54549ff037 Convert variable names to camel case
[MAILPOET-1796]
2020-01-14 15:22:42 +01:00

142 lines
3.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace MailPoet\Models;
use MailPoet\Settings\SettingsController;
use MailPoet\WP\Functions as WPFunctions;
/**
* @property string|array $settings
* @property string|array $body
* @property string $name
*/
class Form extends Model {
public static $_table = MP_FORMS_TABLE;
public function getSettings() {
return WPFunctions::get()->isSerialized($this->settings) ? unserialize($this->settings) : $this->settings;
}
public function getBody() {
return WPFunctions::get()->isSerialized($this->body) ? unserialize($this->body) : $this->body;
}
public function asArray() {
$model = parent::asArray();
$model['body'] = $this->getBody();
$model['settings'] = $this->getSettings();
return $model;
}
public function save() {
$this->set('body', (is_serialized($this->body))
? $this->body
: serialize($this->body)
);
$this->set('settings', (is_serialized($this->settings))
? $this->settings
: serialize($this->settings)
);
return parent::save();
}
public function getFieldList() {
$body = $this->getBody();
if (empty($body)) {
return false;
}
$skippedTypes = ['html', 'divider', 'submit'];
$fields = [];
foreach ((array)$body as $field) {
if (empty($field['id'])
|| empty($field['type'])
|| in_array($field['type'], $skippedTypes)
) {
continue;
}
if ($field['id'] > 0) {
$fields[] = 'cf_' . $field['id'];
} else {
$fields[] = $field['id'];
}
}
return $fields ?: false;
}
public function filterSegments(array $segmentIds = []) {
$settings = $this->getSettings();
if (empty($settings['segments'])) {
return [];
}
if (!empty($settings['segments_selected_by'])
&& $settings['segments_selected_by'] == 'user'
) {
$segmentIds = array_intersect($segmentIds, $settings['segments']);
} else {
$segmentIds = $settings['segments'];
}
return $segmentIds;
}
public static function search($orm, $search = '') {
return $orm->whereLike('name', '%' . $search . '%');
}
public static function groups() {
return [
[
'name' => 'all',
'label' => __('All', 'mailpoet'),
'count' => Form::getPublished()->count(),
],
[
'name' => 'trash',
'label' => __('Trash', 'mailpoet'),
'count' => Form::getTrashed()->count(),
],
];
}
public static function groupBy($orm, $group = null) {
if ($group === 'trash') {
return $orm->whereNotNull('deleted_at');
}
return $orm->whereNull('deleted_at');
}
public static function getDefaultSuccessMessage() {
$settings = SettingsController::getInstance();
if ($settings->get('signup_confirmation.enabled')) {
return __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet');
}
return __('Youve been successfully subscribed to our newsletter!', 'mailpoet');
}
public static function updateSuccessMessages() {
$rightMessage = self::getDefaultSuccessMessage();
$wrongMessage = (
$rightMessage === __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet')
? __('Youve been successfully subscribed to our newsletter!', 'mailpoet')
: __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet')
);
$forms = self::findMany();
foreach ($forms as $form) {
$settings = $form->getSettings();
if (isset($settings['success_message']) && $settings['success_message'] === $wrongMessage) {
$settings['success_message'] = $rightMessage;
$form->set('settings', serialize($settings));
$form->save();
}
}
}
}