From fffb07fd91b42d64e71e16a13bcdde87114fad19 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 11 Apr 2014 18:09:25 +0200 Subject: [ticket/10073] Use namespaces and fix all class names PHPBB3-10073 --- phpBB/includes/message/form.php | 119 ---------------------------------------- 1 file changed, 119 deletions(-) delete mode 100644 phpBB/includes/message/form.php (limited to 'phpBB/includes/message/form.php') diff --git a/phpBB/includes/message/form.php b/phpBB/includes/message/form.php deleted file mode 100644 index 13909e1938..0000000000 --- a/phpBB/includes/message/form.php +++ /dev/null @@ -1,119 +0,0 @@ -phpbb_root_path = $phpbb_root_path; - $this->phpEx = $phpEx; - $this->user = $user; - $this->auth = $auth; - $this->config = $config; - $this->db = $db; - - $this->errors = array(); - - $this->message = new phpbb_message($config['server_name']); - $this->message->set_sender_from_user($this->user); - } - - /** - * Returns the title for the email form page - */ - public function get_page_title() - { - $this->user->lang['SEND_EMAIL']; - } - - public function get_template_file() - { - return 'memberlist_email.html'; - } - - public function check_allow() - { - if (!$this->config['email_enable']) - { - return 'EMAIL_DISABLED'; - } - - if (time() - $this->user->data['user_emailtime'] < $this->config['flood_interval']) - { - return 'FLOOD_EMAIL_LIMIT'; - } - - return false; - } - - public function get_return_message() - { - return sprintf($this->user->lang['RETURN_INDEX'], '', ''); - } - - public function bind(phpbb_request_interface $request) - { - $this->cc_sender = $request->is_set_post('cc_sender'); - $this->body = $request->variable('message', '', true); - } - - public function submit(messenger $messenger) - { - if (!check_form_key('memberlist_email')) - { - $this->errors[] = 'FORM_INVALID'; - } - - if (!sizeof($this->errors)) - { - $sql = 'UPDATE ' . USERS_TABLE . ' - SET user_emailtime = ' . time() . ' - WHERE user_id = ' . $this->user->data['user_id']; - $result = $this->db->sql_query($sql); - - if ($this->cc_sender) - { - $this->message->cc_sender(); - } - - $this->message->send($messenger); - - meta_refresh(3, append_sid($this->phpbb_root_path . 'index.' . $this->phpEx)); - trigger_error($this->user->lang['EMAIL_SENT'] . '

' . $this->get_return_message()); - } - } - - public function render($template) - { - add_form_key('memberlist_email'); - - $template->assign_vars(array( - 'ERROR_MESSAGE' => (sizeof($this->errors)) ? implode('
', $this->errors) : '', - )); - } -} -- cgit v1.2.1