1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/controllers/HomeController.php
Hillel Coren 63a6b88e20 bug fixes
2014-03-05 22:19:12 +02:00

59 lines
1.0 KiB
PHP
Executable File

<?php
use ninja\mailers\Mailer;
class HomeController extends BaseController {
protected $layout = 'master';
protected $mailer;
public function __construct(Mailer $mailer)
{
parent::__construct();
$this->mailer = $mailer;
}
public function showWelcome()
{
return View::make('splash');
}
public function showAboutUs()
{
return View::make('about_us');
}
public function showContactUs()
{
return View::make('contact_us');
}
public function doContactUs()
{
$email = Input::get('email');
$name = Input::get('name');
$message = Input::get('message');
$data = [
'name' => $name,
'email' => $email,
'text' => $message
];
$this->mailer->sendTo('contact@invoiceninja.com', 'contact@invoiceninja.com', 'Invoice Ninja Feedback', 'contact', $data);
Session::flash('message', 'Successfully sent message');
return Redirect::to('/contact');
}
public function showComingSoon()
{
return View::make('coming_soon');
}
public function logError()
{
return Utils::logError(Input::get('error'), 'JavaScript');
}
}