public function PartyActivityUIController::getModalEditPath in Party 7
Get the modal edit path for a given entity.
Parameters
int $id: The id of the entity to find the modal edit path for.
File
- modules/
party_activity/ party_activity.admin.inc, line 158 - Party Activity editing UI
Class
- PartyActivityUIController
- UI Controller
Code
public function getModalEditPath($id) {
return $this->path . '/modal/edit/' . $id . '/nojs';
}