summaryrefslogtreecommitdiff
path: root/doc/en/autogen
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en/autogen')
-rw-r--r--doc/en/autogen/plugin_api/completions.adoc2
-rw-r--r--doc/en/autogen/plugin_api/hdata.adoc20
-rw-r--r--doc/en/autogen/plugin_api/infolists.adoc2
-rw-r--r--doc/en/autogen/plugin_api/plugins_priority.adoc2
-rw-r--r--doc/en/autogen/user/php_commands.adoc25
5 files changed, 50 insertions, 1 deletions
diff --git a/doc/en/autogen/plugin_api/completions.adoc b/doc/en/autogen/plugin_api/completions.adoc
index 564c26e24..9203769ef 100644
--- a/doc/en/autogen/plugin_api/completions.adoc
+++ b/doc/en/autogen/plugin_api/completions.adoc
@@ -58,6 +58,8 @@
| perl | perl_script | list of scripts
+| php | php_script | list of scripts
+
| python | python_script | list of scripts
| relay | relay_free_port | first free port for relay plugin
diff --git a/doc/en/autogen/plugin_api/hdata.adoc b/doc/en/autogen/plugin_api/hdata.adoc
index c099e6d17..1ef6f8965 100644
--- a/doc/en/autogen/plugin_api/hdata.adoc
+++ b/doc/en/autogen/plugin_api/hdata.adoc
@@ -324,6 +324,26 @@ _prev_script_   (pointer, hdata: "perl_script") +
_next_script_   (pointer, hdata: "perl_script") +
+| php
+| [[hdata_php_script]]<<hdata_php_script,php_script>>
+| list of scripts
+| _scripts_ +
+_last_script_ +
+
+| _filename_   (string) +
+_interpreter_   (pointer) +
+_name_   (string) +
+_author_   (string) +
+_version_   (string) +
+_license_   (string) +
+_description_   (string) +
+_shutdown_func_   (string) +
+_charset_   (string) +
+_unloading_   (integer) +
+_prev_script_   (pointer, hdata: "php_script") +
+_next_script_   (pointer, hdata: "php_script") +
+
+
| python
| [[hdata_python_script]]<<hdata_python_script,python_script>>
| list of scripts
diff --git a/doc/en/autogen/plugin_api/infolists.adoc b/doc/en/autogen/plugin_api/infolists.adoc
index f9810b2bd..a57901d65 100644
--- a/doc/en/autogen/plugin_api/infolists.adoc
+++ b/doc/en/autogen/plugin_api/infolists.adoc
@@ -34,6 +34,8 @@
| perl | perl_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional)
+| php | php_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional)
+
| python | python_script | list of scripts | script pointer (optional) | script name (wildcard "*" is allowed) (optional)
| relay | relay | list of relay clients | relay pointer (optional) | -
diff --git a/doc/en/autogen/plugin_api/plugins_priority.adoc b/doc/en/autogen/plugin_api/plugins_priority.adoc
index 2cb61720a..0adb939c7 100644
--- a/doc/en/autogen/plugin_api/plugins_priority.adoc
+++ b/doc/en/autogen/plugin_api/plugins_priority.adoc
@@ -13,6 +13,6 @@
. xfer (7000)
. irc (6000)
. relay (5000)
-. guile, javascript, lua, perl, python, ruby, tcl (4000)
+. guile, javascript, lua, perl, php, python, ruby, tcl (4000)
. script (3000)
. fset (2000)
diff --git a/doc/en/autogen/user/php_commands.adoc b/doc/en/autogen/user/php_commands.adoc
new file mode 100644
index 000000000..6392dda50
--- /dev/null
+++ b/doc/en/autogen/user/php_commands.adoc
@@ -0,0 +1,25 @@
+//
+// This file is auto-generated by script docgen.py.
+// DO NOT EDIT BY HAND!
+//
+[[command_php_php]]
+* `+php+`: list/load/unload scripts
+
+----
+/php list|listfull [<name>]
+ load [-q] <filename>
+ autoload
+ reload|unload [-q] [<name>]
+
+ list: list loaded scripts
+listfull: list loaded scripts (verbose)
+ load: load a script
+autoload: load all scripts in "autoload" directory
+ reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory)
+ unload: unload a script (if no name given, unload all scripts)
+filename: script (file) to load
+ name: a script name (name used in call to "register" function)
+ -q: quiet mode: do not display messages
+
+Without argument, this command lists all loaded scripts.
+----