You are here

fe_paths_test.module in File Entity Paths 7.2

File

tests/fe_paths_test.module
View source
<?php

/**
 * @file
 */

/**
 * Implements hook_node_info().
 */
function fe_paths_test_node_info() {
  return array(
    'fe_paths_test_1' => array(
      'name' => t('File Entity Paths 1'),
      'base' => 'fe_paths_test_1',
      'description' => t('File Entity Paths 1 node type.'),
    ),
    'fe_paths_test_2' => array(
      'name' => t('File Entity Paths 2'),
      'base' => 'fe_paths_test_2',
      'description' => t('File Entity Paths 2 page node type.'),
    ),
  );
}

Functions

Namesort descending Description
fe_paths_test_node_info Implements hook_node_info().