Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
07addd2
tutorial for developping a plugin
orthagh Jan 29, 2025
ad27f50
update doc
orthagh Jan 30, 2025
e0913b3
Fix syntax
trasher Jan 30, 2025
cdf3368
clean php snippets
orthagh Jan 30, 2025
748cce7
clean use
orthagh Jan 30, 2025
eb244ba
clean use
orthagh Jan 30, 2025
7ed73fb
Few fixes
trasher Jan 30, 2025
d607374
Fix doc links
trasher Jan 30, 2025
adc0a7f
Translate titles
trasher Jan 30, 2025
7364176
Rework main title
trasher Jan 30, 2025
975bc8e
Translation
trasher Jan 30, 2025
5134a8a
Dead ref
trasher Jan 30, 2025
33a35f7
Translate
trasher Jan 30, 2025
ccdcb7e
Remove metabase part
trasher Jan 30, 2025
dd9e71e
Translate
trasher Jan 30, 2025
f29dbf4
Fix internal links
trasher Jan 30, 2025
28ab0a4
Apply suggestions from code review
trasher Jan 31, 2025
8066116
Work on translations
trasher Jan 31, 2025
315cfda
Maybe should not we use logDebug.
trasher Jan 31, 2025
122b246
Translation, minor fix
trasher Jan 31, 2025
a0a5ac0
Fix syntax
trasher Jan 31, 2025
a645a9f
Translate
trasher Jan 31, 2025
26033c6
Translate
trasher Jan 31, 2025
1e66f15
Translate
trasher Feb 3, 2025
a1a5297
No direct querying
trasher Feb 3, 2025
37a6b20
End translation
trasher Feb 4, 2025
bf43a31
Typo
trasher Feb 4, 2025
87dc9ad
Typos, misssed translations
trasher Feb 4, 2025
e9d6ef7
Apply suggestions from code review
trasher Feb 4, 2025
b80e86a
Update source/plugins/tutorial.rst
trasher Feb 4, 2025
b35c700
A word about npm. Precision: composer and npm are not mandatory
trasher Feb 5, 2025
36ea59f
Apply suggestions from code review
trasher Feb 6, 2025
2efb005
Add download_url and a note on plugin submission URL
trasher Feb 6, 2025
3c22f7e
Apply suggestions from code review
trasher Feb 7, 2025
0f90d1e
Replace old links
trasher Feb 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added source/_static/images/API.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/Notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/NotificationTarget.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/NotificationTemplate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/api_external_token.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/breadcrumbs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/crontask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/install_plugin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/_static/images/search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions source/devapi/database/dbmodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ PHP class name Table name
``PluginExampleProfile`` ``glpi_plugin_example_profiles``
======================== ================================

.. _dbfields:

Fields
++++++

Expand Down
6 changes: 6 additions & 0 deletions source/plugins/hooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ GLPI provides a certain amount of "hooks". Their goal is for plugins (mainly) to

This page describes current existing hooks; but not the way they must be implemented from plugins. Please refer to the plugins development documentation.

.. _standards_hooks:

Standards Hooks
^^^^^^^^^^^^^^^

Expand Down Expand Up @@ -403,6 +405,8 @@ Hooks that cannot be classified in above categories :)
``post_plugin_clean``
Called after a plugin is cleaned (removed from the database after the folder is deleted)

.. _business_related_hooks:

Items business related
++++++++++++++++++++++

Expand Down Expand Up @@ -463,6 +467,8 @@ Hooks that can do some business stuff on items.

Permit to filter search results.

.. _display_related_hooks:

Items display related
+++++++++++++++++++++

Expand Down
1 change: 1 addition & 0 deletions source/plugins/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ If you want to see more advanced examples of what it is possible to do with plug
tips
notifications
test
tutorial
Loading