friendica/doc/database/db_hook.md

14 lines
1.4 KiB
Markdown
Raw Normal View History

2015-12-28 02:50:25 +01:00
Table hook
===========
addon hook registry
2015-12-28 02:50:25 +01:00
2021-06-14 07:58:51 +02:00
| Field | Description | Type | Null | Key | Default | Extra |
| -------- | ---------------------------------------------------------------------------------------------------------- | ----------------- | ---- | --- | ------- | -------------- |
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
| hook | name of hook | varbinary(100) | NO | | | |
| file | relative filename of hook handler | varbinary(200) | NO | | | |
| function | function name of hook handler | varbinary(200) | NO | | | |
| priority | not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order | smallint unsigned | NO | | 0 | |
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)