summaryrefslogtreecommitdiff
path: root/doc/en/autogen/user
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2017-09-03 13:59:49 +0200
committerSébastien Helleu <flashcode@flashtux.org>2017-09-03 15:34:29 +0200
commit997768c4cf976c4dca93b022d2d695bd569df699 (patch)
treeee07d51a68dc9d58ccaee8642d73b66a64162c68 /doc/en/autogen/user
parentbaa1d5fbc92f944aa4198d5b7665b7483b6e3ca8 (diff)
downloadweechat-997768c4cf976c4dca93b022d2d695bd569df699.zip
doc: add PHP plugin in user's guide
Diffstat (limited to 'doc/en/autogen/user')
-rw-r--r--doc/en/autogen/user/php_commands.adoc25
1 files changed, 25 insertions, 0 deletions
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.
+----