2022-09-18 15:11:10 +02:00
|
|
|
/**
|
|
|
|
* Returns an object holding the defaults hooks structure
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @return {object} hooks - The default hooks holding structure
|
|
|
|
*/
|
2022-08-28 02:14:39 +02:00
|
|
|
export function Hooks() {
|
2019-01-27 17:27:20 +01:00
|
|
|
return {
|
|
|
|
preDraft: [],
|
|
|
|
postDraft: [],
|
|
|
|
preSample: [],
|
|
|
|
postSample: [],
|
|
|
|
preRender: [],
|
2022-02-20 18:45:44 +01:00
|
|
|
postLayout: [],
|
2019-01-27 17:27:20 +01:00
|
|
|
postRender: [],
|
2021-04-24 10:16:31 +02:00
|
|
|
insertText: [],
|
2019-08-03 15:03:33 +02:00
|
|
|
}
|
2019-01-27 17:27:20 +01:00
|
|
|
}
|