public function EntityformUIController::draft_path in Entityform 7.2
Same name and namespace in other branches
- 7 entityform.admin.inc \EntityformUIController::draft_path()
File
- ./
entityform.admin.inc, line 179 - Entityform editing UI.
Class
- EntityformUIController
- UI controller.
Code
public function draft_path($bundle) {
$bundle = str_replace('_', '-', $bundle);
return "eform/{$bundle}/draft";
}