You are here

function feeds_rules_data_info in Feeds 7.2

Same name and namespace in other branches
  1. 8.2 feeds.rules.inc \feeds_rules_data_info()

Implements hook_rules_data_info().

File

./feeds.rules.inc, line 98
Rules integration.

Code

function feeds_rules_data_info() {
  return array(
    'feeds_source' => array(
      'label' => t('Feeds source'),
      'group' => t('Feeds'),
      'wrap' => TRUE,
      'property info' => array(
        'id' => array(
          'label' => t('ID'),
          'type' => 'text',
          'description' => t("The machine readable name of the source importer."),
        ),
        'imported' => array(
          'label' => t('Date imported'),
          'type' => 'date',
          'description' => t("The date the source was last imported."),
        ),
      ),
    ),
  );
}