innomedia/deepl

There is no license information available for the latest version (0.3.1) of this package.

Silverstripe 4 DeepL Integration

0.3.1 2024-02-09 11:39 UTC

This package is auto-updated.

Last update: 2024-05-09 12:09:06 UTC


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; }