innomedia / deepl
There is no license information available for the latest version (1.0) of this package.
Silverstripe 4 DeepL Integration
1.0
2025-10-30 13:44 UTC
Requires
README
Add this to Page
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; }