diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 14:40:59 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 15:34:29 +0200 |
commit | ef193107aa30a791944dc5f5a26933faf0a1ded9 (patch) | |
tree | 8563f8bafc758cda00446683526a386b0c5bc512 | |
parent | 8e41d3b6165ee2dfcc4a934e6ccd7cf1a7aeb501 (diff) | |
download | weechat-ef193107aa30a791944dc5f5a26933faf0a1ded9.zip |
doc: add PHP plugin in developer's guide
-rw-r--r-- | doc/en/weechat_dev.en.adoc | 4 | ||||
-rw-r--r-- | doc/fr/weechat_dev.fr.adoc | 4 | ||||
-rw-r--r-- | doc/ja/weechat_dev.ja.adoc | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 4b4981936..5daeffd56 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -79,6 +79,7 @@ The main WeeChat directories are: | logger/ | Logger plugin (write messages displayed to files). | lua/ | Lua scripting API. | perl/ | Perl scripting API. +| php/ | PHP scripting API. | python/ | Python scripting API. | relay/ | Relay plugin (irc proxy + relay for remote interfaces). | ruby/ | Ruby scripting API. @@ -268,6 +269,9 @@ WeeChat "core" is located in following directories: | perl/ | Perl plugin. | weechat-perl.c | Main perl functions (load/unload scripts, execute perl code). | weechat-perl-api.c | Perl scripting API functions. +| php/ | PHP plugin. +| weechat-php.c | Main PHP functions (load/unload scripts, execute PHP code). +| weechat-php-api.c | PHP scripting API functions. | python/ | Python plugin. | weechat-python.c | Main python functions (load/unload scripts, execute python code). | weechat-python-api.c | Python scripting API functions. diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index ccd0e079a..eebfb3a1c 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -81,6 +81,7 @@ Les répertoires principaux de WeeChat sont : | logger/ | Extension Logger (enregistrer les messages affichés dans des fichiers). | lua/ | API script Lua. | perl/ | API script Perl. +| php/ | API script PHP. | python/ | API script Python. | relay/ | Extension Relay (proxy IRC + relai pour interfaces distantes). | ruby/ | API script Ruby. @@ -270,6 +271,9 @@ Le cœur de WeeChat est situé dans les répertoires suivants : | perl/ | Extension Perl. | weechat-perl.c | Fonctions principales pour Perl (chargement/déchargement des scripts, exécution de code Perl). | weechat-perl-api.c | Fonctions de l'API script Perl. +| php/ | Extension PHP. +| weechat-php.c | Fonctions principales pour PHP (chargement/déchargement des scripts, exécution de code PHP). +| weechat-php-api.c | Fonctions de l'API script PHP. | python/ | Extension Python. | weechat-python.c | Fonctions principales pour Python (chargement/déchargement des scripts, exécution de code Python). | weechat-python-api.c | Fonctions de l'API script Python. diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index c11d50b23..9c7e9f9e2 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -85,6 +85,7 @@ qweechat:: | logger/ | logger プラグイン (表示されたメッセージをファイルに書き込む) | lua/ | lua スクリプト用 API | perl/ | perl スクリプト用 API +| php/ | php スクリプト用 API | python/ | python スクリプト用 API | relay/ | relay プラグイン (irc プロキシ + リモートインターフェイス用の中継) | ruby/ | ruby スクリプト用 API @@ -274,6 +275,9 @@ WeeChat "core" は以下のディレクトリに配置されています: | perl/ | perl プラグイン | weechat-perl.c | perl の主要関数 (スクリプトのロード/アンロード、perl コードの実行) | weechat-perl-api.c | perl スクリプト作成 API 関数 +| php/ | php プラグイン +| weechat-php.c | php の主要関数 (スクリプトのロード/アンロード、php コードの実行) +| weechat-php-api.c | php スクリプト作成 API 関数 | python/ | python プラグイン | weechat-python.c | python の主要関数 (スクリプトのロード/アンロード、python コードの実行) | weechat-python-api.c | python スクリプト作成 API 関数 |