You are here

function hook_editor_note_format_notes_alter in Editor Notes 7

Hook is to allow other modules to alter the formatted notes before they are rendered.

For example, if I wanted to display the note's author picture I would use custom hook_editor_note_format_notes_alter() to add this.

Return value

Renderable array of Editor notes.

1 invocation of hook_editor_note_format_notes_alter()
editor_note_get_formatted_notes in ./editor_note.module
Returns formatted notes table.

File

./editor_note.api.php, line 18
Hooks provided by the Editor Notes module.

Code

function hook_editor_note_format_notes_alter($notes) {
}