26 lines
780 B
Plaintext
26 lines
780 B
Plaintext
|
//
|
||
|
// 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.
|
||
|
----
|