You are here

function nd_rules_event_info in Display Suite 6.3

Implementation of hook_rules_event_info().

File

modules/nd/nd.module, line 27
Node displays.

Code

function nd_rules_event_info() {
  return array(
    'nd_node_is_build' => array(
      'label' => t('DS has built the node display'),
      'module' => 'nd',
      'arguments' => array(
        'node' => array(
          'type' => 'node',
          'label' => t('Content'),
        ),
      ),
    ),
  );
}