You are here

public function EntityformUIController::draft_path in Entityform 7

Same name and namespace in other branches
  1. 7.2 entityform.admin.inc \EntityformUIController::draft_path()

File

./entityform.admin.inc, line 177
Entityform editing UI.

Class

EntityformUIController
UI controller.

Code

public function draft_path($bundle) {
  $bundle = str_replace('_', '-', $bundle);
  return "eform/{$bundle}/draft";
}