innomedia / deepl
There is no license information available for the latest version (0.3.2) of this package.
Silverstripe 4 DeepL Integration
0.3.2
2024-11-25 16:02 UTC
Requires
- deeplcom/deepl-php: ^1.6
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; }