This project is not covered by Drupal’s security advisory policy.

Basic CRUD (Create, Read, Update and Delete) operation in Drupal sites (both 8 and 9) supported.

CRUD operations may refer to a major operation done using databases. For example, these operations may be mapped with SQL syntax like the below:

CRUD 	SQL
Create 	INSERT
Read 	SELECT
Update 	UPDATE
Delete 	DELETE
  • Create, or add new entries
  • Read, retrieve, search, or view existing entries
  • Update, or edit existing entries
  • Delete, deactivate, or remove existing entries
    Install:
    composer require 'drupal/basic_crud_operation_in_drupal_sites:1.0.x-dev@dev'
  
  • Once installed, you can see the module inside /contrib folder
  • Enable the module and visithttp://YOURLOCALSITE/my_crud
  • You should also see a empty table created in your local database called "my_crud"
  • Project information

    Releases