You are here

function _entityform_type_get_submit_url in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform.module \_entityform_type_get_submit_url()
5 calls to _entityform_type_get_submit_url()
EntityformTypeController::delete in ./entityform.module
Overridden to delete aliases and clear cache.
EntityformUIController::submit_path in ./entityform.admin.inc
entityform_entity_presave in ./entityform.module
Implements hook_entity_presave().
entityform_tokens in ./entityform.tokens.inc
Implements hook_tokens().
_entityform_type_get_path_types in ./entityform.module
Utility function to get path types for an Entityform Type

File

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

Code

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