You are here

function metatag_action_info in Metatag 7

Implements hook_action_info().

File

./metatag.module, line 261
Primary hook implementations for Metatag.

Code

function metatag_action_info() {

  // Provides integration with Views bulk operations.
  return array(
    'metatag_modify_metatags_action' => array(
      'type' => 'entity',
      'label' => t('Modify entity metatags'),
      'configurable' => FALSE,
      'vbo_configurable' => TRUE,
      'behavior' => array(
        'changes_property',
      ),
      'triggers' => array(
        'any',
      ),
      'permissions' => array(
        'edit meta tags',
      ),
    ),
  );
}