Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

[FEATURE] add getter getInstances() in FormObjectFactory #87

Open
wants to merge 27 commits into
base: wip/steps
Choose a base branch
from
Open

[FEATURE] add getter getInstances() in FormObjectFactory #87

wants to merge 27 commits into from

Commits on Aug 6, 2017

  1. Configuration menu
    Copy the full SHA
    1c9819f View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2017

  1. [BUGFIX] Instantiate fields validators with object manager in Ajax

    Following the commit 2f23f80, a field
    validator should be instantiated with the object manager, to allow more
    Extbase feature.
    
    The instantiation type was not modified in the Ajax controller, though.
    romm committed Aug 11, 2017
    Configuration menu
    Copy the full SHA
    2c4763f View commit details
    Browse the repository at this point in the history
  2. [TASK] Initialize validator messages before validation

    This allows more flexibility for the messages initialization; for
    instance you can dynamically build the messages list in the method
    `initializeObject()` of your validator, then they will be processed just
    before the validation actually runs.
    romm committed Aug 11, 2017
    Configuration menu
    Copy the full SHA
    0be97eb View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2017

  1. [BUGFIX] Fix variables not passed to field layout view in TYPO3 8.6

    Fluid variables were not passed correctly to the layout standalone view
    of a field.
    
    This commit fixes this issue, as well as a refactor for the older
    versions behaviour to make the code more readable.
    romm committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    f221822 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2017

  1. [TASK] Fix unit tests

    romm committed Oct 23, 2017
    Configuration menu
    Copy the full SHA
    a97b7a3 View commit details
    Browse the repository at this point in the history
  2. [BUGFIX] Use more accurate identifier for assets hash

    A collision could occur on the name of the asset files for two forms
    with the same definition but with different names.
    romm committed Oct 23, 2017
    Configuration menu
    Copy the full SHA
    193ba2f View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. [BUGFIX] Handle multiple occurrences of messages markers in JavaScript

    The message template of a field can be filled with the same marker
    several times: every occurrence should be replaced.
    
    Example:
    
    ```
    messageTemplate = <span class="#TYPE#" data-#TYPE#="bar">#FIELD#</span>
    ```
    romm committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    0c91fd7 View commit details
    Browse the repository at this point in the history
  2. [BUGFIX] Prevent getting unformatted input (#70)

    On an ajax call, FormZ will get all the input in the form tag and will
    create the query. But if there is an input unformatted (without `[]`)
    FormZ will send a bad data.
    AzOoDev authored and romm committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    a3ee50a View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. [BUGFIX] Use a different view form the field layout rendering

    It allows for instance nesting several fields located in multiple
    partial files.
    romm committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    e5b4370 View commit details
    Browse the repository at this point in the history
  2. [BUGFIX] Add current template variables to slot

    Allows the inner part of a slot to have access to the current view
    variables.
    romm committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    3834e32 View commit details
    Browse the repository at this point in the history
  3. [BUGFIX] Add current layout/partial root paths to field template

    Fixes an issue in TYPO3 v8 where rendering a partial or using a layout
    was impossible due to the inheritance of layout/partial root paths not
    properly set.
    romm committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    a0a4d2c View commit details
    Browse the repository at this point in the history
  4. [BUGFIX] Handle nested fields views behaviour with Fluid standalone

    Couple of fixes that will fix certain issues when working with nested
    fields in TYPO3 v8.
    romm committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    3b5ac06 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3cf3f5f View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2017

  1. [TASK] Use self statement in method parameter

    After StyleCI inspection failed.
    romm committed Nov 9, 2017
    Configuration menu
    Copy the full SHA
    4626b02 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79eddae View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2017

  1. Configuration menu
    Copy the full SHA
    ea395e8 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2018

  1. [DOC] Fix several typos

    Fixes #75
    romm committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    7474daf View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2018

  1. [TASK] Improve pattern for word validation rules

    Allow some more characters, mostly for German language.
    
    Fixes #76
    romm committed Jan 16, 2018
    Configuration menu
    Copy the full SHA
    e316fe7 View commit details
    Browse the repository at this point in the history
  2. [FEATURE] Add fz-loading to form tag when field is validating (#78)

    When any field starts its validation, the data attribute `fz-loading` is
    added to the `<form>` tag. When the validation is done (successful or 
    not) the data attribute is removed.
    Mopolo authored and romm committed Jan 16, 2018
    Configuration menu
    Copy the full SHA
    92597e5 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2018

  1. [TASK] Rename TCA file to tt_content

    Fixes #79
    romm committed Jan 22, 2018
    Configuration menu
    Copy the full SHA
    55ec7e2 View commit details
    Browse the repository at this point in the history
  2. [DOC] Fix English translation

    romm committed Jan 22, 2018
    Configuration menu
    Copy the full SHA
    a349528 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2018

  1. Configuration menu
    Copy the full SHA
    c99d9f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6ab84d View commit details
    Browse the repository at this point in the history
  3. [TASK] Trim value on input fields (#83)

    Removing beginning/ending whitespaces on input fields.
    Philippe Court authored and romm committed Jan 27, 2018
    Configuration menu
    Copy the full SHA
    b44b0ec View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2018

  1. [FEATURE] Introduce new condition FieldIsFilled (#84)

    Can be used to check whether a field does contain any value (it is not 
    empty).
    abdeljabbar authored and romm committed Feb 12, 2018
    Configuration menu
    Copy the full SHA
    e4a9bdb View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2018

  1. [FEATURE] add condition activation fieldCountValues

    Philippe Court authored and romm committed Mar 2, 2018
    Configuration menu
    Copy the full SHA
    b28e824 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2018

  1. [FEATURE] add getter getInstances() in FormObjectFactory

    Philippe Court authored Mar 16, 2018
    Configuration menu
    Copy the full SHA
    64c3e8b View commit details
    Browse the repository at this point in the history