simpletestauto_node_info

Definition

simpletestauto_node_info()
simpletestauto.module, line 165

Description

Implementation of hook_node_info. We only have one node type here.

Code

<?php
function simpletestauto_node_info() {
  // Only if this server is used to catch patches we define new node type.
  return array(
    'simpletestauto_test' => array(
      'name' => t('test instance'), 
      'module' => 'simpletestauto_test',
      'description' => t('Test instance node. Create a test instance and send your patch into automatic testing process.'),
    ),
  );
}
?>