You are here

function entityform_uri in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.module \entityform_uri()

URI callback for entityforms

1 string reference to 'entityform_uri'
entityform_entity_info in ./entityform.module
Implement hook_entity_info().

File

./entityform.module, line 635
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityform_uri(Entityform $entityform) {
  return array(
    'path' => 'entityform/' . $entityform->entityform_id,
  );
}