Skip to content

Commit c5a2d4b

Browse files
author
Farzad Hayatbakhsh
committed
DOC-1928: Replace "id" with "ID" in partials/configuration
1 parent 20f660f commit c5a2d4b

22 files changed

+36
-36
lines changed

modules/ROOT/partials/configuration/advtemplate_create_category.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The plugin uses the `advtemplate_create_category` asynchronous function to creat
1616
[cols="1,1,3",options="header"]
1717
|===
1818
| Field | Type | Description
19-
| `+id+` | `+String+` | The id of the newly created category.
19+
| `+id+` | `+String+` | The ID of the newly created category.
2020
|===
2121

2222
=== Example: using `advtemplate_create_category`

modules/ROOT/partials/configuration/advtemplate_create_template.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ The plugin uses the `advtemplate_create_template` asynchronous function to creat
1111
| Field | Type | Required? | Description
1212
| `+title+` | `+String+` | required | The title of the template.
1313
| `+content+` | `+String+` | required | The content of the template.
14-
| `+categoryId+` | `+String+` | optional | The parent category id.
14+
| `+categoryId+` | `+String+` | optional | The parent category ID\.
1515
|===
1616

1717
*Return data:*
1818
[cols="1,1,3",options="header"]
1919
|===
2020
| Field | Type | Description
21-
| `+id+` | `+String+` | The id of newly created template.
21+
| `+id+` | `+String+` | The ID of newly created template.
2222
|===
2323

2424
=== Example: using `advtemplate_create_template`

modules/ROOT/partials/configuration/advtemplate_delete_category.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The plugin uses the `advtemplate_delete_category` asynchronous function to delet
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+id+` | `+String+` | required | The id of the category to delete.
12+
| `+id+` | `+String+` | required | The ID of the category to delete.
1313
|===
1414

1515
*Return data:*

modules/ROOT/partials/configuration/advtemplate_delete_template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The plugin uses the `advtemplate_delete_template` asynchronous function to delet
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+id+` | `+String+` | required | The id of the template to delete.
12+
| `+id+` | `+String+` | required | The ID of the template to delete.
1313
|===
1414

1515
*Return data:*

modules/ROOT/partials/configuration/advtemplate_get_template.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ The plugin uses the `advtemplate_get_template` asynchronous function to get a te
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+id+` | `+String+` | required | The id of the template to get.
12+
| `+id+` | `+String+` | required | The ID of the template to get.
1313
|===
1414

1515
*Return data:*
1616
[cols="1,1,3",options="header"]
1717
|===
1818
| Field | Type | Description
19-
| `+id+` | `+String+` | The id of the template.
19+
| `+id+` | `+String+` | The ID of the template.
2020
| `+title+` | `+String+` | The title of the template.
2121
| `+content+` | `+String+` | The content of the template.
2222
|===

modules/ROOT/partials/configuration/advtemplate_move_category_items.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The plugin uses the `advtemplate_move_category_items` asynchronous function to m
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+oldCategoryId+` | `+String+` | required | The id of the source category.
13-
| `+newCategoryId+` | `+String+` | optional | The id of the destination category.
12+
| `+oldCategoryId+` | `+String+` | required | The ID of the source category.
13+
| `+newCategoryId+` | `+String+` | optional | The ID of the destination category.
1414
|===
1515

1616
*Return data:* Empty object `{}`

modules/ROOT/partials/configuration/advtemplate_move_template.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The plugin uses the `advtemplate_move_template` asynchronous function to move th
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+templateId+` | `+String+` | required | The id of the template to move.
13-
| `+newCategoryId+`| `+String+` | optional | The id of the destination category.
12+
| `+templateId+` | `+String+` | required | The ID of the template to move.
13+
| `+newCategoryId+`| `+String+` | optional | The ID of the destination category.
1414
|===
1515

1616
*Return data:* Empty object `{}`

modules/ROOT/partials/configuration/advtemplate_rename_category.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The plugin uses the `advtemplate_rename_category` asynchronous function to renam
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+id+` | `+String+` | required | The id of the category to rename.
12+
| `+id+` | `+String+` | required | The ID of the category to rename.
1313
| `+title+`| `+String+` | required | New category title.
1414
|===
1515

modules/ROOT/partials/configuration/advtemplate_rename_template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The plugin uses the `advtemplate_rename_template` asynchronous function to renam
99
[cols="1,1,1,3",options="header"]
1010
|===
1111
| Field | Type | Required? | Description
12-
| `+id+` | `+String+` | required | The id of the template to rename.
12+
| `+id+` | `+String+` | required | The ID of the template to rename.
1313
| `+title+` | `+String+` | required | New template title.
1414
|===
1515

modules/ROOT/partials/configuration/auto_focus.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[auto_focus]]
22
== `+auto_focus+`
33

4-
Automatically set the focus to an editor instance. The value of this option should be an editor instance `+id+`. The editor instance id is the id for the original `+textarea+` or `+div+` element that got replaced. If you set this option to `+true+`, the focus will be set to the last initialized editor instance.
4+
Automatically set the focus to an editor instance. The value of this option should be an editor instance `+id+`. The editor instance ID is the ID for the original `+textarea+` or `+div+` element that got replaced. If you set this option to `+true+`, the focus will be set to the last initialized editor instance.
55

66
*Type:* `+String+` or `+true+`
77

0 commit comments

Comments
 (0)