1 entity_example.module entity_example_basic_uri($basic)

Implements the uri callback.

Related topics

File

modules/examples/entity_example/entity_example.module, line 135
Hook implementations for the Entity Example module.

Code

function entity_example_basic_uri($basic) {
  return array(
    'path' => 'examples/entity_example/basic/' . $basic->basic_id,
  );
}