Download the PHP package idct/symfony-form-soft-delete-aware-entity-type without Composer

On this page you can find all versions of the php package idct/symfony-form-soft-delete-aware-entity-type. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package symfony-form-soft-delete-aware-entity-type

Symfony Form SoftDeleteAware EntityType

Tests status Code Coverate

The missing link between softdeleteable from doctrine/extensions and Symfony Form component.

Warning!

If you need to use this it most likely means that you have a bad architecture of your software. If you allow deletion or soft deletion you should first make sure that each related entity is updated first with null or new relation. This form type is meant to be used for transition purposes in systems which need to quickly add soft deletion on some entities which are used in relations, but due to time or other resources it is impossible to upgrade the actual processes.

Purpose

If you are using the softdeleteable filter and EntityType forms you may encounter a situation when your CRUD Edit form in which the related entity is no longer available as soft removed. This form type will make the form still properly render, but forcing the user to update the relation using the form.

In such situation, using standard entity type you may see a screen like this:

With the SoftDeleteAwareEntityType it will revert to the placeholder forcing user to update:

Compatibility

Installation

First require it in your project:

As this is not a bundle register in your services (for example services.yaml) file:

If you have autowiring:

If you do not use autowiring you need to pass doctrine as the first argument:

Now in forms which use EntityType change the form type to SoftDeleteAwareEntityType. For example:

And that is all!

Testing

Tool has a testing toolchain prepared using Docker. If you have docker installed simply run ./run-tests.sh.

This will run unit tests with PHPUnit, generate code-coverage report and run some functional e-2-e tests using Behat and Chrome Driver.

Contribution

Any contribution is more then welcome, please file any issues or pull requests, yet when possible please try to make sure that tests are working.


All versions of symfony-form-soft-delete-aware-entity-type with dependencies

PHP Build Version
Package Version
Requires gedmo/doctrine-extensions Version ^3
symfony/doctrine-bridge Version ^6 || ^7
symfony/property-access Version ^6 || ^7
symfony/options-resolver Version ^6 || ^7
symfony/form Version ^6 || ^7
doctrine/orm Version ^2|^3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package idct/symfony-form-soft-delete-aware-entity-type contains the following files

Loading the files please wait ....