Skip to main content

RichTextElementTagSettings

@gca_object_type

Encapsulation of all elements in com.psddev.cms.db.RichTextElement.Tag.

1
@gca_object_type(
2
internalName: "com.psddev.cms.db.RichTextElementTagSettings"
3
embedded: true
4
id: "a305379d-9774-3d7a-b1be-5ae1073e4c20"
5
abstract: false
6
)
1
type RichTextElementTagSettings implements Record, Recordable {
2
_id: ID
3
_label: String
4
_globals: Globals!
5
_raw(
6
path: String
7
): Json
8
_state(
9
path: String
10
): Json @deprecated
11
name: String
12
htmlBody: Boolean
13
initialBody: String
14
block: Boolean
15
preview: Boolean
16
readOnly: Boolean
17
root: Boolean
18
childrenClassNames: [String]
19
menu: String
20
tooltip: String
21
keymaps: [String]
22
position: Float
23
inclusive: Boolean
24
extraCssClasses: [String]
25
}

Directives

gca_object_type

1
@gca_object_type(
2
internalName: "com.psddev.cms.db.RichTextElementTagSettings"
3
embedded: true
4
id: "a305379d-9774-3d7a-b1be-5ae1073e4c20"
5
abstract: false
6
)

Fields

_id ● ID scalar common

The unique ID of the Record. Corresponds to the Java method Record#getId and State#getId.

_label ● String scalar common

The display name of the Record instance. Corresponds to the Java methods Record#getLabel and State#getLabel.

_globals ● Globals! non-null object common

Contains global Modification fields for this Record instance.

_raw ● Json scalar common

Contains raw State JSON for this Record instance. The same as invoking getState().getSimpleValues();

path ● String scalar common

Restricts the returned JSON to the specified path within the record’s state.

name ● String scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "name"
4
embedded: false
5
)

htmlBody ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "htmlBody"
4
embedded: false
5
)

initialBody ● String scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "initialBody"
4
embedded: false
5
)

block ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "block"
4
embedded: false
5
)

preview ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "preview"
4
embedded: false
5
)

readOnly ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "readOnly"
4
embedded: false
5
)

root ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "root"
4
embedded: false
5
)

childrenClassNames ● [String] list scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "childrenClassNames"
4
embedded: false
5
)

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "menu"
4
embedded: false
5
)

tooltip ● String scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "tooltip"
4
embedded: false
5
)

keymaps ● [String] list scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "keymaps"
4
embedded: false
5
)

position ● Float scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "position"
4
embedded: false
5
)

inclusive ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "inclusive"
4
embedded: false
5
)

extraCssClasses ● [String] list scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "extraCssClasses"
4
embedded: false
5
)
Hide deprecated

_state ● Json deprecated scalar common

DEPRECATED

Use [_raw] instead. For removal in 5.0!

Contains raw State JSON for this Record instance. The same as invoking getState().getSimpleValues();

path ● String scalar common

Restricts the returned JSON to the specified path within the record’s state.

Interfaces

Record interface common

Recordable interface common

The super interface for all types backed by data models, e.g. Java classes that implement Recordable. This interface declares a single _id field containing the UUID of the record. A corresponding _type field is intentionally omitted as it can be derived programmatically from the built-in GraphQL __typename field. Each GraphQL type that implements this interface will be annotated with the @gca_object_type directive which contains the backing data model's type ID.

Member Of