mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 00:01:07 +00:00
70 lines
3.0 KiB
PHP
70 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2014-2017 ServMask Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
|
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
|
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
|
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
|
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
|
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
|
*/
|
|
|
|
class Ai1wm_Feedback {
|
|
|
|
/**
|
|
* Submit customer feedback to ServMask.com
|
|
*
|
|
* @param string $type Feedback type
|
|
* @param string $email User e-mail
|
|
* @param string $message User message
|
|
* @param integer $terms User accept terms
|
|
*
|
|
* @return array
|
|
*/
|
|
public function add( $type, $email, $message, $terms ) {
|
|
$errors = array();
|
|
|
|
// Submit feedback to ServMask
|
|
if ( empty( $type ) ) {
|
|
$errors[] = __( 'Feedback type is invalid.', AI1WM_PLUGIN_NAME );
|
|
} elseif ( ! filter_var( $email, FILTER_VALIDATE_EMAIL ) ) {
|
|
$errors[] = __( 'Your email is not valid.', AI1WM_PLUGIN_NAME );
|
|
} elseif ( empty( $message ) ) {
|
|
$errors[] = __( 'Please enter comments in the text area.', AI1WM_PLUGIN_NAME );
|
|
} elseif ( empty( $terms ) ) {
|
|
$errors[] = __( 'Please accept feedback term conditions.', AI1WM_PLUGIN_NAME );
|
|
} else {
|
|
$response = wp_remote_post(
|
|
AI1WM_FEEDBACK_URL,
|
|
array(
|
|
'body' => array(
|
|
'type' => $type,
|
|
'email' => $email,
|
|
'message' => $message,
|
|
),
|
|
)
|
|
);
|
|
|
|
if ( is_wp_error( $response ) ) {
|
|
$errors[] = sprintf( __( 'Something went wrong: %s', AI1WM_PLUGIN_NAME ), $response->get_error_message() );
|
|
}
|
|
}
|
|
|
|
return $errors;
|
|
}
|
|
}
|