Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public function deleteModification(SS_HTTPRequest $request){
  2. $ModificationID= $request->param('ID');
  3. $ModificationToDelete = Modification::get()->Filter(array('ID' => $ModificationID));
  4. $ModificationToDelete->remove();
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement