You are here

function gathercontent_action_info in GatherContent 7.3

Implements hook_action_info().

@inheritdoc

File

./gathercontent.module, line 357

Code

function gathercontent_action_info() {
  return array(
    'gathercontent_update' => array(
      'type' => 'entity',
      'label' => t('Update from GatherContent'),
      'configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
      'behavior' => array(
        'create_property',
      ),
      'vbo_configurable' => FALSE,
      'pass rows' => TRUE,
    ),
    'gathercontent_upload' => array(
      'type' => 'entity',
      'label' => t('Upload to GatherContent'),
      'configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
      'behavior' => array(
        'create_property',
      ),
      'vbo_configurable' => FALSE,
      'pass rows' => TRUE,
    ),
  );
}