[Plugins][FAVOURITE] No longer a form, a link to a new page is provided instead. The amount of forms per page were blocking rendering for the majority of its duration.

This commit is contained in:
2021-10-21 20:14:22 +01:00
committed by Diogo Peralta Cordeiro
parent a6d5752748
commit 60b15ea79d
10 changed files with 192 additions and 76 deletions

View File

@@ -44,13 +44,14 @@ class Reply extends NoteHandlerPlugin
return Event::next;
}
// TODO: Refactoring to link instead of a form
/**
* HTML rendering event that adds the reply form as a note action,
* if a user is logged in
*
* @throws RedirectException
*/
public function onAddNoteActions(Request $request, Note $note, array &$actions)
/* public function onAddNoteActions(Request $request, Note $note, array &$actions)
{
if (($user = Common::user()) === null) {
return Event::next;
@@ -97,5 +98,5 @@ class Reply extends NoteHandlerPlugin
}
$actions[] = $form->createView();
return Event::next;
}
}*/
}