Bachir Soussi Chiadmi e3cf889820 contrib modules updates 5 yıl önce
..
config e3cf889820 contrib modules updates 5 yıl önce
css 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
js b8e8cc8cee updated contrib modules : translation_views, views_bulk_edit, views_bulk_operations, workflow, addtoany, redis, url_to_video_filter 5 yıl önce
modules e3cf889820 contrib modules updates 5 yıl önce
src e3cf889820 contrib modules updates 5 yıl önce
tests e3cf889820 contrib modules updates 5 yıl önce
LICENSE.txt 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
README.txt 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
composer.json 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
drush.services.yml 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
views_bulk_operations.drush.inc 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
views_bulk_operations.info.yml e3cf889820 contrib modules updates 5 yıl önce
views_bulk_operations.libraries.yml 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
views_bulk_operations.module 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
views_bulk_operations.routing.yml 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce
views_bulk_operations.services.yml 4dca28199c updated migration to add workflow state and also skipe notice pages, added favicon, improved admin views 6 yıl önce

README.txt

Introduction
------------

Views Bulk Operations augments Views by allowing actions
(provided by Drupal core or contrib modules) to be executed
on the selected view rows.

It does so by showing a checkbox in front of each displayed row, and adding a
select box on top of the View containing operations that can be applied.


Getting started
-----------------

1. Create a View with a page or block display.
2. Add a "Views bulk operations" field (global), available on
all entity types.
3. Configure the field by selecting at least one operation.
4. Go to the View page. VBO functionality should be present.


Creating custom actions
-----------------------

Example that covers different possibilities is available in
modules/views_bulk_operatios_example/.

In a module, create an action plugin (check the included example module,
test actions in /tests/views_bulk_operations_test/src/Plugin/Action
or \core\modules\node\src\Plugin\Action namespace for simple implementations).

Available annotation parameters:
- id: The action ID (required),
- label: Action label (required),
- type: Entity type for the action, if left empty, action will be
applicable to all entity types (required),
- confirm: If set to TRUE and the next parameter is empty,
the module default confirmation form will be used (default: FALSE),
- confirm_form_route_name: Route name of the action confirmation form.
If left empty and the previous parameter is empty, there will be
no confirmation step (default: empty string).
- requirements: an array of requirements an action must meet
to be displayed on the action selection form. At the moment
only one possible requirement is supported: '_permission', if
the current user has that permission, the action execution will
be possible.


Additional notes
----------------

Full documentation with examples is available at
https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo.