-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from michelegiorgi/development
release 1.3.4
- Loading branch information
Showing
14 changed files
with
3,154 additions
and
3,315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Formality", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"author": "Michele Giorgi <[email protected]>", | ||
"homepage": "https://giorgi.io", | ||
"private": true, | ||
|
@@ -56,7 +56,8 @@ | |
"sass-loader": "^9.0.3", | ||
"stylelint": "^13.6.1", | ||
"stylelint-config-standard": "^20.0.0", | ||
"vue-template-compiler": "^2.6.12" | ||
"vue-template-compiler": "^2.6.12", | ||
"laravel-mix-banner": "^0.1.4" | ||
}, | ||
"dependencies": { | ||
"clone-deep": "^4.0.1", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
/** | ||
* Formality email notification template | ||
* You can override this by putting a notification-formality.php file inside your active theme's directory. | ||
* Don't forget to use basic html tags and inline css rules. | ||
* | ||
* Some inherited variables that you can easily use: | ||
* $title - Your form title | ||
* $content - Html table with all form data | ||
* $result_link - Direct link to this result in your admin dashboard | ||
* $results_link - Direct link to all results for this form | ||
* | ||
* @link https://formality.dev | ||
* @since 1.3.4 | ||
* @package Formality | ||
* @subpackage Formality/public | ||
* @author Michele Giorgi <[email protected]> | ||
* @license GPL-3.0+ | ||
*/ | ||
?> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>Formality email template</title> | ||
</head> | ||
<body> | ||
<div style="font-family: sans-serif;"> | ||
<?php _e("New result for", "formality"); ?> | ||
<h2 style="margin: 0; font-family: sans-serif;"><?php echo $title; ?></h2> | ||
<br><br> | ||
<?php echo $content; ?> | ||
<br><br> | ||
<a style="font-family: sans-serif;" href="<?php echo $result_link; ?>"><?php _e('View this result', 'formality'); ?></a> | ||
<?php _e('in your admin dashboard', 'formality'); ?> | ||
<br> | ||
<a style="font-family: sans-serif;" href="<?php echo $results_link; ?>"><?php _e('View all results', 'formality'); ?></a> | ||
<?php _e('for', 'formality'); ?> <?php echo $title; ?> | ||
<br><br> | ||
<?php _e("Made with", "formality"); ?> <a href="https://formality.dev" style="color:inherit; font-family: sans-serif"><strong>Formality</strong></a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
<?php | ||
/** | ||
* The template for displaying single formality form | ||
* Formality standalone form template | ||
* You can override this by putting a single-formality.php file inside your active theme's directory. | ||
* | ||
* @link https://formality.dev | ||
* @since 1.0 | ||
* @package Formality | ||
* @subpackage Formality/public | ||
* @author Michele Giorgi <[email protected]> | ||
* @license GPL-3.0+ | ||
*/ | ||
?> | ||
<!DOCTYPE html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.