innomedia / deepl
There is no license information available for the latest version (0.3.9) of this package.
Silverstripe 4 DeepL Integration
0.3.9
2025-05-14 11:33 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; }