Command line usage 

AQG registers the Symfony console command a11y:scan.

vendor/bin/typo3 a11y:scan --root-pid=1
Copied!

Options 

--root-pid

--root-pid
Type
int

Root page UID of the subtree to scan. Either --root-pid or --page-uid must be given.

--page-uid

--page-uid
Type
int

Scan a single page by UID.

--depth

--depth
Type
int
Default
99

Maximum page tree depth for a subtree scan.

--language

--language
Type
string
Default
all

sys_language_uid to scan, or all for every language.

--changed-only

--changed-only
Type
flag

Process only content that changed since the last scan. Uses the stored source state in tx_a11y_source_state .

Examples 

# Scan a subtree
vendor/bin/typo3 a11y:scan --root-pid=1

# Scan a single page
vendor/bin/typo3 a11y:scan --page-uid=42

# Incremental rescan of changed content only
vendor/bin/typo3 a11y:scan --root-pid=1 --changed-only

# Scan one language of a subtree
vendor/bin/typo3 a11y:scan --root-pid=1 --language=1

# Limit the depth of the subtree scan
vendor/bin/typo3 a11y:scan --root-pid=1 --depth=3
Copied!

The command exits with a non-zero status when neither --root-pid nor --page-uid is supplied.