Skip to content

Commit 309360b

Browse files
committed
Fix scan debug FAQ entry.
1 parent e901353 commit 309360b

19 files changed

+114
-98
lines changed

readme.ar.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1302,11 +1302,12 @@ smtp_secure
13021302

13031303
```PHP
13041304
<?php
1305-
require 'phpmussel/loader.php';
1305+
$Loader = new \phpMussel\Core\Loader();
1306+
$Scanner = new \phpMussel\Core\Scanner($Loader);
13061307

1307-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1308+
$Scanner->setScanDebugArray($Foo);
13081309

1309-
$Results = $phpMussel['Scan']('/file/path/...');
1310+
$Results = $Scanner->scan('/file/path/...');
13101311

13111312
var_dump($Foo);
13121313
```
@@ -1354,7 +1355,7 @@ var_dump($Foo);
13541355
<div dir="rtl">اختياريا، يمكن تدمير هذه المصفوفة باستخدام ما يلي:<br /><br /></div>
13551356

13561357
```PHP
1357-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1358+
$Scanner->destroyScanDebugArray($Foo);
13581359
```
13591360

13601361
#### <div dir="rtl"><a name="BLACK_WHITE_GREY"></a>القوائم السوداء – القوائم البيضاء – القائمة الرمادية – ما هي، وكيف أستخدمها؟<br /><br /></div>
@@ -1762,4 +1763,4 @@ x.x.x.x - Day, dd Mon 20xx hh:ii:ss +0000 - "admin" - حاليا على.
17621763
---
17631764

17641765

1765-
<div dir="rtl">آخر تحديث: 7 سبتمبر 2020 (2020.09.07).</div>
1766+
<div dir="rtl">آخر تحديث: 25 يناير 2021 (2021.01.25).</div>

readme.de.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ Im folgenden Beispiel, `$Foo` ist zu diesem Zweck zugeordnet. Nach dem Scannen `
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/Dateipfad/...');
1298+
$Results = $Scanner->scan('/Dateipfad/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ Das Array ist ein multidimensionales Array, das aus Elementen besteht, die jede
13421343
Optional, kann dieses Array zerstört werden, indem man folgendes verwendet:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Blacklists – Whitelists – Greylists – Was sind sie und wie benutze ich sie?
@@ -1735,4 +1736,4 @@ Alternativ gibt es einen kurzen (nicht autoritativen) Überblick über die GDPR/
17351736
---
17361737

17371738

1738-
Zuletzt aktualisiert: 7 September 2020 (2020.09.07).
1739+
Zuletzt aktualisiert: 25 Januar 2021 (2021.01.25).

readme.en.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1326,11 +1326,12 @@ In the example below, `$Foo` is assigned for this purpose. After scanning `/file
13261326

13271327
```PHP
13281328
<?php
1329-
require 'phpmussel/loader.php';
1329+
$Loader = new \phpMussel\Core\Loader();
1330+
$Scanner = new \phpMussel\Core\Scanner($Loader);
13301331

1331-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1332+
$Scanner->setScanDebugArray($Foo);
13321333

1333-
$Results = $phpMussel['Scan']('/file/path/...');
1334+
$Results = $Scanner->scan('/file/path/...');
13341335

13351336
var_dump($Foo);
13361337
```
@@ -1378,7 +1379,7 @@ The array is a multidimensional array consisting of elements representing each f
13781379
Optionally, this array can be destroyed by using the following:
13791380

13801381
```PHP
1381-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1382+
$Scanner->destroyScanDebugArray($Foo);
13821383
```
13831384

13841385
#### <a name="BLACK_WHITE_GREY"></a>Blacklists – Whitelists – Greylists – What are they, and how do I use them?
@@ -1764,4 +1765,4 @@ Alternatively, there's a brief (non-authoritative) overview of GDPR/DSGVO availa
17641765
---
17651766

17661767

1767-
Last Updated: 7 September 2020 (2020.09.07).
1768+
Last Updated: 25 January 2021 (2021.01.25).

readme.es.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ En el ejemplo siguiente, `$Foo` está asignado para este propósito. Después de
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/ruta/de/archivo/...');
1298+
$Results = $Scanner->scan('/ruta/de/archivo/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ La matriz es una matriz multidimensional que consta de elementos que representan
13421343
Opcionalmente, esta matriz se puede destruir utilizando lo siguiente:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Listas negras – Listas blancas – Listas grises – ¿Qué son y cómo los uso?
@@ -1727,4 +1728,4 @@ Alternativamente, hay una breve descripción (no autoritativa) de GDPR/DSGVO dis
17271728
---
17281729

17291730

1730-
Última Actualización: 7 de Septiembre de 2020 (2020.09.07).
1731+
Última Actualización: 25 de Enero de 2021 (2021.01.25).

readme.fr.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ Dans l'exemple ci-dessous, `$Foo` est utilisé à cette fin. Après avoir analys
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/chemin/du/fichier/...');
1298+
$Results = $Scanner->scan('/chemin/du/fichier/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ Le tableau est un tableau multidimensionnel composé d'éléments représentant
13421343
En option, ce tableau peut être détruit en utilisant ce qui suit :
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Listes noires – Listes blanches – Listes grises – Quels sont-ils, et comment puis-je les utiliser ?
@@ -1733,4 +1734,4 @@ Alternativement, il y a un bref aperçu (non autorisé) de GDPR/DSGVO disponible
17331734
---
17341735

17351736

1736-
Dernière mise à jour : 7 Septembre 2020 (2020.09.07).
1737+
Dernière mise à jour : 25 Janvier 2021 (2021.01.25).

readme.id.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Terima kasih untuk menggunakan phpMussel, sebuah skrip PHP yang di-design untuk
2222

2323
[PHPMUSSEL](https://phpmussel.github.io/) HAK CIPTA 2013 dan di atas GNU/GPLv2 oleh [Caleb M (Maikuolan)](https://github.com/Maikuolan).
2424

25-
Skrip ini berbasis Sumber Terbuka ; Anda dapat mendistribusikan kembali dan/atau memodifikasinya dalam batasan dari lisensu GNU General Public License, seperti di publikasikan dari Free Software Foundation; baik versi 2 dari License, atau (dalam opsi Anda) versi selanjutnya apapun. Skrip ini didistribusikan untuk harapan dapat digunakan tapi TANPA JAMINAN; tanpa walaupun garansi dari DIPERJUALBELIKAN atau KECOCOKAN UNTUK TUJUAN TERTENTU. Mohon Lihat GNU General Public Licence untuk lebih detail, terletak di file `LICENSE.txt` dan tersedia juga dari:
25+
Skrip ini berbasis Sumber Terbuka; Anda dapat mendistribusikan kembali dan/atau memodifikasinya dalam batasan dari lisensu GNU General Public License, seperti di publikasikan dari Free Software Foundation; baik versi 2 dari License, atau (dalam opsi Anda) versi selanjutnya apapun. Skrip ini didistribusikan untuk harapan dapat digunakan tapi TANPA JAMINAN; tanpa walaupun garansi dari DIPERJUALBELIKAN atau KECOCOKAN UNTUK TUJUAN TERTENTU. Mohon Lihat GNU General Public Licence untuk lebih detail, terletak di file `LICENSE.txt` dan tersedia juga dari:
2626
- <https://www.gnu.org/licenses/>.
2727
- <https://opensource.org/licenses/>.
2828

@@ -1290,11 +1290,12 @@ Pada contoh dibawah ini, `$Foo` ditugaskan untuk tujuan ini. Setelah memindai `/
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/jalur/file/...');
1298+
$Results = $Scanner->scan('/jalur/file/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ Array yang multidimensi dan terdiri dari elemen yang mewakili setiap file yang d
13421343
Opsional, array ini bisa dihancurkan dengan menggunakan berikut ini:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Daftar hitam – Daftar putih – Daftar abu-abu – Apa itu mereka, dan bagaimana cara menggunakannya?
@@ -1720,4 +1721,4 @@ Beberapa sumber bacaan yang direkomendasikan untuk mempelajari informasi lebih l
17201721
---
17211722

17221723

1723-
Terakhir Diperbarui: 27 Oktober 2020 (2020.10.27).
1724+
Terakhir Diperbarui: 25 Januari 2021 (2021.01.25).

readme.it.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ Nell'esempio qui sotto, a questo scopo viene utilizzato `$Foo`. Dopo la scansion
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/percorso/del/file/...');
1298+
$Results = $Scanner->scan('/percorso/del/file/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ L'array è una matrice multidimensionale che consiste di elementi che rappresent
13421343
Facoltativamente, questa matrice può essere distrutta utilizzando quanto segue:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Blacklists (liste nere) – Whitelists (liste bianche) – Greylists (liste grigie) – Cosa sono e come li uso?
@@ -1723,4 +1724,4 @@ In alternativa, è disponibile una breve panoramica (non autorevole) di GDPR/DSG
17231724
---
17241725

17251726

1726-
Ultimo Aggiornamento: 7 Settembre 2020 (2020.09.07).
1727+
Ultimo Aggiornamento: 25 Gennaio 2021 (2021.01.25).

readme.ja.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1286,15 +1286,16 @@ phpMusselは、​ファイルをブロックします | __偽陽性__ | 真陽
12861286

12871287
これは、​phpMusselにそれらをスキャンするように指示する前に、​この目的のために使用する配列を割り当てることによって行うことができます。
12881288

1289-
以下の例では、​この目的のために`$Foo`が割り当てられています。​`/file/path/...`をスキャンした後、​`/file/path/...`のファイルに関する情報は`$Foo`にあります。
1289+
以下の例では、​この目的のために`$Foo`が割り当てられています。​`/ファイル/パス/...`をスキャンした後、​`/ファイル/パス/...`のファイルに関する情報は`$Foo`にあります。
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/file/path/...');
1298+
$Results = $Scanner->scan('/ファイル/パス/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ var_dump($Foo);
13421343
必要に応じて、​この配列は以下を使用して破棄できます。
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>ブラックリスト – ホワイトリスト – グレーリスト – 彼らは何ですか?私はどのように使用しますか?
@@ -1720,4 +1721,4 @@ phpMusselは、マーケティングやアドバタイジング目的で情報
17201721
---
17211722

17221723

1723-
最終アップデート:2020年9月7日
1724+
最終アップデート:2021年1月25日

readme.ko.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1286,15 +1286,16 @@ phpMussel은 파일을 차단합니다 | __위양성__ | 진정한 양성 (올
12861286

12871287
이것은 phpMussel 그들을 검사하도록 지시하기 전 에이 목적을 위해 사용하는 배열을 할당하여 수행할 수 있습니다.
12881288

1289-
다음 예제에서는이 목적을 위해 `$Foo` 가 할당되어 있습니다. `/file/path/...` 를 스캔 한 후 `/file/path/...` 파일에 대한 정보는 `$Foo` 에 있습니다.
1289+
다음 예제에서는이 목적을 위해 `$Foo` 가 할당되어 있습니다. `/파일/경로/...` 를 스캔 한 후 `/파일/경로/...` 파일에 대한 정보는 `$Foo` 에 있습니다.
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/file/path/...');
1298+
$Results = $Scanner->scan('/파일/경로/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ var_dump($Foo);
13421343
필요한 경우, 이 배열은 다음을 사용하여 삭제합니다.
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>블랙리스트 – 화이트리스트 – 그레이리스트 – 그들은 무엇이며 어떻게 사용합니까?
@@ -1718,4 +1719,4 @@ phpMussel은 마케팅이나 광고 목적으로 정보를 수집하거나 처
17181719
---
17191720

17201721

1721-
최종 업데이트 : 2020년 9월 7일.
1722+
최종 업데이트 : 2021년 1월 25일.

readme.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ An ideal solution for shared hosting environments, where it's often not possible
4545

4646
### Current major version development status:
4747

48-
⬇Stage reached⬇ ➡Major version➡ | v0 | v1 | v2 | v3
49-
:--|:-:|:-:|:-:|:-:
50-
Pre-Alpha<em><br />- Exploring early concepts/ideas. No code written/available yet.</em> | ✔ | ✔ | ✔ | ✔
51-
Alpha<em><br />- Branched, but unstable. Not production-ready (high risk if used).</em> | ✔ | ✔ | ✔ | ✔
52-
Beta<em><br />- Branched, but unstable. Not production-ready (low risk if used).</em> | ✔ | ✔ | ✔ | ✔
53-
Stable<em><br />- First production-ready version has been tagged/released.</em> | ✔ | ✔ | ✔ | ✔
48+
⬇Stage reached⬇ ➡Major version➡ | v0 | v1 | v2~v3
49+
:--|:-:|:-:|:-:
50+
Pre-Alpha<em><br />- Exploring early concepts/ideas. No code written/available yet.</em> | ✔ | ✔ | ✔
51+
Alpha<em><br />- Branched, but unstable. Not production-ready (high risk if used).</em> | ✔ | ✔ | ✔
52+
Beta<em><br />- Branched, but unstable. Not production-ready (low risk if used).</em> | ✔ | ✔ | ✔
53+
Stable<em><br />- First production-ready version has been tagged/released.</em> | ✔ | ✔ | ✔
5454
Mature<em><br />- Multiple stable versions/releases exist.</em> | ✔ | ✔ | ✔
5555
Locked<em><br />- Still maintained, but new features won't be implemented anymore.</em> | ✔ | ✔
5656
EoL/Dead<em><br />- Not maintained anymore. If possible, stop using, and update ASAP.</em> | ✔
5757

5858
---
5959

6060

61-
Last Updated: 16 October 2020 (2020.10.16).
61+
Last Updated: 12 December 2020 (2020.12.12).

readme.nl.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ In het onderstaande voorbeeld, `$Foo` is hiervoor toegewezen. Na het scannen `/b
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/bestandspad/...');
1298+
$Results = $Scanner->scan('/bestandspad/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ De array is multidimensionaal. Elementen vertegenwoordigen de bestanden die moet
13421343
Optioneel, deze array kan worden vernietigd door het volgende te gebruiken:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Blacklists (zwarte lijsten) – Whitelists (witte lijsten) – Greylists (grijze lijst) – Wat zijn ze en hoe gebruik ik ze?
@@ -1744,4 +1745,4 @@ Als alternatief is er een kort (niet-gezaghebbende) overzicht van GDPR/DSGVO/AVG
17441745
---
17451746

17461747

1747-
Laatste Bijgewerkt: 7 September 2020 (2020.09.07).
1748+
Laatste Bijgewerkt: 25 Januari 2021 (2021.01.25).

readme.pt.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1290,11 +1290,12 @@ No exemplo abaixo, `$Foo` é atribuído para este propósito. Depois de analisar
12901290

12911291
```PHP
12921292
<?php
1293-
require 'phpmussel/loader.php';
1293+
$Loader = new \phpMussel\Core\Loader();
1294+
$Scanner = new \phpMussel\Core\Scanner($Loader);
12941295

1295-
$phpMussel['Set-Scan-Debug-Array']($Foo);
1296+
$Scanner->setScanDebugArray($Foo);
12961297

1297-
$Results = $phpMussel['Scan']('/caminho/de/arquivo/...');
1298+
$Results = $Scanner->scan('/caminho/de/arquivo/...');
12981299

12991300
var_dump($Foo);
13001301
```
@@ -1342,7 +1343,7 @@ A matriz é uma matriz multidimensional consistindo em elementos que representam
13421343
Opcionalmente, esta matriz pode ser destruída usando o seguinte:
13431344

13441345
```PHP
1345-
$phpMussel['Destroy-Scan-Debug-Array']($Foo);
1346+
$Scanner->destroyScanDebugArray($Foo);
13461347
```
13471348

13481349
#### <a name="BLACK_WHITE_GREY"></a>Blacklists (listas negras) – Whitelists (listas brancas) – Greylists (listas cinzentas) – Quais são eles e como eu os uso?
@@ -1723,4 +1724,4 @@ Alternativamente, há uma breve visão geral (não autoritativa) do GDPR/DSGVO d
17231724
---
17241725

17251726

1726-
Última Atualização: 7 de Setembro de 2020 (2020.09.07).
1727+
Última Atualização: 25 de Janeiro de 2021 (2021.01.25).

0 commit comments

Comments
 (0)