Made proper template for send form. Remodelled data/templating handling.
This commit is contained in:
parent
bcec4867ac
commit
239b63ce8a
22
index.php
22
index.php
@ -6,7 +6,7 @@ use \Frs\FieldDefinition;
|
||||
use \Frs\Output\HtmlOutput;
|
||||
use \Frs\Output\MailOutput;
|
||||
use \Frs\Output\Transport\StdoutTransport;
|
||||
use \Frs\Output\Transport\GScriptTransport;
|
||||
use \Frs\Output\Transport\NullTransport;
|
||||
|
||||
$stdout = new StdoutTransport();
|
||||
$ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates');
|
||||
@ -25,9 +25,7 @@ switch ($action) {
|
||||
break;
|
||||
|
||||
case 'send':
|
||||
echo 'This would send the mail...';
|
||||
$mt = new GScriptTransport();
|
||||
$mo = new MailOutput($mt, dirname(__FILE__) . '/templates');
|
||||
$mo = new MailOutput(new NullTransport(), dirname(__FILE__) . '/templates');
|
||||
$form_type = $_REQUEST['form_type'];
|
||||
$mo->setTemplate('mail_' . $form_type);
|
||||
$fd = new FieldDefinition($form_type);
|
||||
@ -41,13 +39,15 @@ switch ($action) {
|
||||
$mo->setTemplateVars($data);
|
||||
$mo->setTemplateVar('form_type', $form_type);
|
||||
$mo->setTemplateVar('form_type_uc', ucwords($form_type));
|
||||
$mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation');
|
||||
$mail_sent = $mo->send();
|
||||
if ($mail_sent) {
|
||||
$ho->setTemplate('mail_sent_html');
|
||||
} else {
|
||||
$ho->setTemplate('mail_failed_html');
|
||||
}
|
||||
$mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation'); // default subject
|
||||
$mail_html = $mo->getRenderedOutput(); // contains headers + body
|
||||
list($headers, $mailbody) = preg_split('/\r?\n\r?\n/', $mail_html, 2);
|
||||
$mo->setHeadersFromString($headers); // updates Subject line
|
||||
|
||||
$ho->setTemplate('mail_prep_html');
|
||||
$ho->setTemplateVar('gscript_url', 'https://script.google.com/macros/s/AKfycbxVcugiTBTvWx8DK_HhuQh_vXdteir6GTXE_Anir3rfovatjQM/exec');
|
||||
$ho->setTemplateVar('mail_subject', $mo->getSubject());
|
||||
$ho->setTemplateVar('mail_body', $mailbody);
|
||||
break;
|
||||
|
||||
case 'event':
|
||||
|
@ -37,6 +37,16 @@ class MailOutput extends GenericOutput
|
||||
$this->subject = $newSubject;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the currently set subject for the mail.
|
||||
*
|
||||
* @return string Subject currently set.
|
||||
*/
|
||||
public function getSubject()
|
||||
{
|
||||
return $this->subject;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the given header $key to $value. A Subject: header sets
|
||||
* the subject via $this->setSubject(). A To: header is ignored.
|
||||
|
@ -1,47 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Frs\Output\Transport;
|
||||
|
||||
class GScriptTransport implements TransportInterface
|
||||
{
|
||||
private $content;
|
||||
private $subject;
|
||||
private $headers = array();
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->post_url = 'https://script.google.com/macros/s/AKfycbxVcugiTBTvWx8DK_HhuQh_vXdteir6GTXE_Anir3rfovatjQM/exec';
|
||||
}
|
||||
|
||||
public function setParam($key, $value)
|
||||
{
|
||||
switch ($key) {
|
||||
case 'to':
|
||||
// ignored
|
||||
break;
|
||||
|
||||
case 'subject':
|
||||
$this->subject = $value;
|
||||
break;
|
||||
|
||||
case 'headers':
|
||||
$this->headers = $value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public function setContent($content)
|
||||
{
|
||||
$this->content = $content;
|
||||
}
|
||||
|
||||
public function transmit()
|
||||
{
|
||||
echo '<html><body><form method="post" action="' . $this->post_url . '">';
|
||||
echo '<input type="text" name="subject" value="' . $this->subject . '"/>';
|
||||
echo '<textarea name="body">' . $this->content . '</textarea>';
|
||||
echo '<input type="submit" value="Send"/>';
|
||||
echo '</form></body></html>';
|
||||
return true;
|
||||
}
|
||||
}
|
19
lib/Frs/Output/Transport/NullTransport.php
Normal file
19
lib/Frs/Output/Transport/NullTransport.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Frs\Output\Transport;
|
||||
|
||||
class NullTransport implements TransportInterface
|
||||
{
|
||||
public function setParam($key, $value)
|
||||
{
|
||||
}
|
||||
|
||||
public function setContent($content)
|
||||
{
|
||||
}
|
||||
|
||||
public function transmit()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
36
templates/mail_prep_html.mustache
Normal file
36
templates/mail_prep_html.mustache
Normal file
@ -0,0 +1,36 @@
|
||||
{{> html_head}}
|
||||
{{> mdl_head}}
|
||||
{{> mdl_content_head}}
|
||||
|
||||
<div class="frs-crumbs mdl-color-text--grey-500">
|
||||
<a href="./">Fake Reservation System</a> > Send Reservation
|
||||
</div>
|
||||
|
||||
<h3>Sending Mail</h3>
|
||||
|
||||
<p>
|
||||
This is what will be sent to your account:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<form method="post" action="{{ gscript_url }}">
|
||||
<input type="hidden" name="return_url" value="{{ return_url }}"/>
|
||||
|
||||
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label" style="width: 100%;">
|
||||
<input class="mdl-textfield__input" type="text" required id="mail_subject" name="subject" value="{{ mail_subject }}"/>
|
||||
<label class="mdl-textfield__label" for="mail_subject">Subject</label>
|
||||
<span class="mdl-textfield__error">Please input a value!</span>
|
||||
</div><br/>
|
||||
|
||||
<div class="mdl-textfield mdl-js-textfield" style="width: 100%;">
|
||||
<textarea class="mdl-textfield__input" type="text" id="mail_body" rows="20" name="body">{{ mail_body }}</textarea>
|
||||
<label class="mdl-textfield__label" for="mail_body">Body</label>
|
||||
</div><br/>
|
||||
|
||||
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent">Send</button>
|
||||
</form>
|
||||
</p>
|
||||
|
||||
{{> mdl_content_foot}}
|
||||
{{> mdl_foot}}
|
||||
{{> html_foot}}
|
Reference in New Issue
Block a user