christophlehmann/typo3-datahandler-cli
Composer 安装命令:
composer require christophlehmann/typo3-datahandler-cli
包简介
Use CLI commands to modify database records with the TYPO3 DataHandler. A lowlevel way for mass changes.
README 文档
README
Use CLI commands to modify database records with the TYPO3 DataHandler. A lowlevel way for mass changes.
Pages with title Detail should not be included in search
./bin/typo3 datahandler:patch \
--table pages \
--whereClause 'title="Detail"' \
--jsonPatch '{"no_search": 1}'
Page #2 should become an external link to typo3.org
./bin/typo3 datahandler:patch \
--table pages \
--records 2 \
--jsonPatch '{"doktype": 3, "url": "https://typo3.org"}'
Delete page #100 and #200
./bin/typo3 datahandler:delete \
--table pages \
--records 100,200
With --workspace changes can be applied in a workspace.
Status
It's very alpha, so use with care.
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2024-08-29