You are here

function _entityform_type_get_confirm_url in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.module \_entityform_type_get_confirm_url()
3 calls to _entityform_type_get_confirm_url()
EntityformUIController::confirm_path in ./entityform.admin.inc
entityform_entity_presave in ./entityform.module
Implements hook_entity_presave().
_entityform_type_get_path_types in ./entityform.module
Utility function to get path types for an Entityform Type

File

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

Code

function _entityform_type_get_confirm_url($type) {
  return 'eform/' . str_replace('_', '-', $type) . '/confirm';
}