Skip to content

Commit ed24c8e

Browse files
committed
Update docs outputs
1 parent a81bd23 commit ed24c8e

7 files changed

Lines changed: 8 additions & 14 deletions

File tree

docs/_processwire_version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "3.0.255",
33
"suffix": null,
4-
"branch": "dev",
5-
"commit": "752980a4c843ff809351201c77bf5116acc04f76",
4+
"branch": "master",
5+
"commit": "4bf3a6d09cfd2c5d3f8a1c195d768889434ba0b1",
66
"generated": "2026-02-09"
77
}

docs/api-core/wire/core/Selectors/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@ foreach($selectors as $selector) {
3838
echo "</p>";
3939
}
4040
~~~~~
41-
For details on how to use selectors please see [Using Selectors](https://processwire.com/docs/selectors/)
42-
and [Selector Operators](https://processwire.com/docs/selectors/operators/).
4341

44-
@link https://processwire.com/docs/selectors/ Official Selectors Documentation
42+
@link https://processwire.com/api/selectors/ Official Selectors Documentation
4543

4644

4745
@todo Move static helper methods to dedicated API var/class so this class can be more focused

docs/api-core/wire/core/WireDatabasePDO/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $db = new WireDatabasePDO([
6464
- [`prepare(string $statement, array|string|bool $driver_options = array(), string $note = ''): \PDOStatement|WireDatabasePDOStatement`](method-prepare.md) Prepare an SQL statement for accepting bound parameters
6565
- [`exec(string|\PDOStatement $statement, string $note = ''): bool|int`](method-exec.md) Execute an SQL statement string
6666
- [`execute(\PDOStatement $query, bool $throw = true, int $maxTries = 3): bool`](method-execute.md) Execute a PDO statement, with retry and error handling
67-
- [`queryLog(string|bool|int $sql = '', string $note = ''): array|bool`](method-querylog.md) Log a query, start/stop query logging, or return logged queries
67+
- [`queryLog(string|bool $sql = '', string $note = ''): array|bool`](method-querylog.md) Log a query, start/stop query logging, or return logged queries
6868
- [`getTables(bool $allowCache = true): array`](method-gettables.md) Get array of all tables in this database.
6969
- [`getColumns(string $table, bool|int|string $verbose = false): array`](method-getcolumns.md) Get all columns from given table
7070
- [`getIndexes(string $table, bool|int|string $verbose = false): array`](method-getindexes.md) Get all indexes from given table

docs/api-core/wire/core/WireDatabasePDO/method-querylog.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Log a query, start/stop query logging, or return logged queries
88
- To retrieve the query log, call this method with no arguments.
99
- Note the core only populates the query log when `$config->debug` mode is active.
1010
- Specify boolean true for $sql argument to reset and start query logging (3.0.173+)
11-
- Specify integer 1 for $sql argument to start query logging without reset (3.0.256+)
1211
- Specify boolean false for $sql argument to stop query logging (3.0.173+)
1312

1413
## Usage
@@ -23,7 +22,7 @@ $array = $wireDatabasePDO->queryLog($sql = '', $note = '');
2322

2423
## Arguments
2524

26-
- `$sql` (optional) `string|bool|int` Query to log, `true` to reset+start log, `1` to start w/no reset, `false` to stop, omit to get log.
25+
- `$sql` (optional) `string|bool` Query (string) to log, boolean true to reset/start query logging, boolean false to stop query logging
2726
- `$note` (optional) `string` Any additional debugging notes about the query
2827

2928
## Return value

docs/api-full/wire/core/Selectors/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@ foreach($selectors as $selector) {
3838
echo "</p>";
3939
}
4040
~~~~~
41-
For details on how to use selectors please see [Using Selectors](https://processwire.com/docs/selectors/)
42-
and [Selector Operators](https://processwire.com/docs/selectors/operators/).
4341

44-
@link https://processwire.com/docs/selectors/ Official Selectors Documentation
42+
@link https://processwire.com/api/selectors/ Official Selectors Documentation
4543

4644

4745
@todo Move static helper methods to dedicated API var/class so this class can be more focused

docs/api-full/wire/core/WireDatabasePDO/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $db = new WireDatabasePDO([
6464
- [`prepare(string $statement, array|string|bool $driver_options = array(), string $note = ''): \PDOStatement|WireDatabasePDOStatement`](method-prepare.md) Prepare an SQL statement for accepting bound parameters
6565
- [`exec(string|\PDOStatement $statement, string $note = ''): bool|int`](method-exec.md) Execute an SQL statement string
6666
- [`execute(\PDOStatement $query, bool $throw = true, int $maxTries = 3): bool`](method-execute.md) Execute a PDO statement, with retry and error handling
67-
- [`queryLog(string|bool|int $sql = '', string $note = ''): array|bool`](method-querylog.md) Log a query, start/stop query logging, or return logged queries
67+
- [`queryLog(string|bool $sql = '', string $note = ''): array|bool`](method-querylog.md) Log a query, start/stop query logging, or return logged queries
6868
- [`getTables(bool $allowCache = true): array`](method-gettables.md) Get array of all tables in this database.
6969
- [`getColumns(string $table, bool|int|string $verbose = false): array`](method-getcolumns.md) Get all columns from given table
7070
- [`getIndexes(string $table, bool|int|string $verbose = false): array`](method-getindexes.md) Get all indexes from given table

docs/api-full/wire/core/WireDatabasePDO/method-querylog.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Log a query, start/stop query logging, or return logged queries
88
- To retrieve the query log, call this method with no arguments.
99
- Note the core only populates the query log when `$config->debug` mode is active.
1010
- Specify boolean true for $sql argument to reset and start query logging (3.0.173+)
11-
- Specify integer 1 for $sql argument to start query logging without reset (3.0.256+)
1211
- Specify boolean false for $sql argument to stop query logging (3.0.173+)
1312

1413
## Usage
@@ -23,7 +22,7 @@ $array = $wireDatabasePDO->queryLog($sql = '', $note = '');
2322

2423
## Arguments
2524

26-
- `$sql` (optional) `string|bool|int` Query to log, `true` to reset+start log, `1` to start w/no reset, `false` to stop, omit to get log.
25+
- `$sql` (optional) `string|bool` Query (string) to log, boolean true to reset/start query logging, boolean false to stop query logging
2726
- `$note` (optional) `string` Any additional debugging notes about the query
2827

2928
## Return value

0 commit comments

Comments
 (0)