Skip to content

Commit

Permalink
FormIt 4.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joeke committed Jan 22, 2021
1 parent 9fb6104 commit de51f81
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 9 deletions.
2 changes: 1 addition & 1 deletion _build/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"lowCaseName": "formit",
"description": "FormIt is a dynamic form processing Snippet for MODx Revolution. It handles a form after submission, performing validation and followup actions like sending an email. It does not generate the form, but it can repopulate it if it fails validation.",
"author": "Sterc",
"version": "4.2.5",
"version": "4.2.6",
"package": {
"menus": [{
"text": "formit",
Expand Down
33 changes: 33 additions & 0 deletions _build/gpm_resolvers/gpm.resolve.tables.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php
/**
* Resolve creating db tables
*
* THIS RESOLVER IS AUTOMATICALLY GENERATED, NO CHANGES WILL APPLY
*
* @package formit
* @subpackage build
*
* @var mixed $object
* @var modX $modx
* @var array $options
*/

if ($object->xpdo) {
$modx =& $object->xpdo;
switch ($options[xPDOTransport::PACKAGE_ACTION]) {
case xPDOTransport::ACTION_INSTALL:
case xPDOTransport::ACTION_UPGRADE:
$modelPath = $modx->getOption('formit.core_path', null, $modx->getOption('core_path') . 'components/formit/') . 'model/';

$modx->addPackage('formit', $modelPath, null);


$manager = $modx->getManager();

$manager->createObjectContainer('FormItForm');

break;
}
}

return true;
Binary file added _packages/formit-4.2.6-pl.transport.zip
Binary file not shown.
24 changes: 16 additions & 8 deletions core/components/formit/docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
Changelog for FormIt.

FormIt 4.2.6
====================================
- Add support for UTF-8 when exporting (PR#221)
- Move limit from foreach to query in migration class (PR#236)
- Remove unnecessary mail->reset from autoresponder hook (PR#240)
- Add Ukrainian lexicon + some changes to RU and EN lexicons (PR#242)
- Update Composer autoloader for newer Composer versions (PR#243)

FormIt 4.2.5
====================================
- Added new properties to email hook (#229, thanks to @jako)
- emailSelectTo, emailSelectToName, emailSelectField
- emailSelectTo, emailSelectToName, emailSelectField

FormIt 4.2.4
====================================
Expand All @@ -30,15 +38,15 @@ FormIt 4.2.0
====================================
- Bug on hasHook() fixed (#182, #181, #170, #193)
- ExtJS refactored for faster and better UI/UX
- IP number added to the grid (#194)
- Better form view with textfields and textareas (#136)
- Remove multiple forms (#143)
- Search by IP (and context menu option to view all forms from 1 IP)
- IP number added to the grid (#194)
- Better form view with textfields and textareas (#136)
- Remove multiple forms (#143)
- Search by IP (and context menu option to view all forms from 1 IP)
- New permissions added
- formit_encryptions to encrypt/decrypt forms
- Context awereness, an user can only see the forms with the contexts that the user has access to.
- formit_encryptions to encrypt/decrypt forms
- Context awereness, an user can only see the forms with the contexts that the user has access to.
- Swedish translation updated
- All other language files checked and filled with English strings
- All other language files checked and filled with English strings
- Formit deprecation notice in 2.7.0dev bug fixed (#190)

FormIt 4.1.2
Expand Down

0 comments on commit de51f81

Please sign in to comment.