innomedia / deepl
此包的最新版本(0.3.1)没有可用的许可信息。
Silverstripe 4 DeepL 集成
0.3.1
2024-02-09 11:39 UTC
Requires
- deeplcom/deepl-php: ^1.6
README
将此添加到页面
public function getCMSActions() { $fields = parent::getCMSActions(); $tmp = explode('_', $this->Locale); $lang = strtoupper($tmp[0]); if (Deepl::canTranslate($lang)) { $fields->fieldByName("MajorActions")->push( ConfirmationFormAction::create("doTranslate","Übersetzen")->addExtraClass("btn-primary") ); } return $fields; }