function feeds_atom_entity_property_info_alter in Feeds Atom 7
Implements hook_entity_property_info_alter().
File
- ./feeds_atom.module, line 14 
- Contains the main functionality for feeds_atom.
Code
function feeds_atom_entity_property_info_alter(&$info) {
  if (!empty($info['node']['properties'])) {
    $info['node']['properties']['feeds_atom_import'] = array(
      'label' => t('Feeds Atom Import'),
      'type' => 'boolean',
      'description' => t('A Boolean for whether this node is importing through Feeds Atom.'),
    );
  }
}