diff --git a/config/install/fillpdf.settings.yml b/config/install/fillpdf.settings.yml index e42a1291f16b4970b37badf7a1e0aa5dc8cb8cac..77a40e87f44fa42660464eaeda715b1fe4e092d3 100644 --- a/config/install/fillpdf.settings.yml +++ b/config/install/fillpdf.settings.yml @@ -5,6 +5,3 @@ template_scheme: '' shell_locale: en_US.UTF-8 remote_protocol: https - -# Should not contain a protocol. That's what the above is for. -remote_endpoint: fillpdf.io/xmlrpc.php diff --git a/src/Form/FillPdfSettingsForm.php b/src/Form/FillPdfSettingsForm.php index 88e71955dd859d522f26f161650c8ce0219370be..1c2bffe231fa4a975d80f704d6e4f1649b23b3b1 100644 --- a/src/Form/FillPdfSettingsForm.php +++ b/src/Form/FillPdfSettingsForm.php @@ -7,7 +7,6 @@ use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\File\FileSystemInterface; use Drupal\Core\Form\ConfigFormBase; use Drupal\Core\Form\FormStateInterface; -use Drupal\Core\Url; use Drupal\fillpdf\Component\Utility\FillPdf; use Drupal\fillpdf\Plugin\PdfBackendManager; use Drupal\fillpdf\Service\FillPdfAdminFormHelper; @@ -219,7 +218,7 @@ class FillPdfSettingsForm extends ConfigFormBase { '#type' => 'radios', '#title' => $this->t('PDF-filling service'), '#description' => $this->t('This module requires the use of one of several external PDF manipulation tools. Choose the service you would like to use.'), - '#default_value' => $config->get('backend') ?: 'fillpdf_service', + '#default_value' => $config->get('backend'), '#options' => [], ]; @@ -245,21 +244,19 @@ class FillPdfSettingsForm extends ConfigFormBase { '#type' => 'textfield', '#title' => $this->t('Server endpoint'), '#default_value' => $config->get('remote_endpoint'), - '#description' => $this->t('The endpoint for the FillPDF Service instance. This does not usually need to be changed, but you may want to if you have, for example, a <a href="https://fillpdf.io/hosting">private server</a>. Do not include the protocol, as this is determined by the <em>Use HTTPS?</em> setting below.'), + '#description' => $this->t('The endpoint for the FillPDF Service instance. Do not include the protocol, as this is determined by the <em>Use HTTPS?</em> setting below.'), ]; $form['fillpdf_service']['fillpdf_service_api_key'] = [ '#type' => 'textfield', '#title' => $this->t('API Key'), '#default_value' => $config->get('fillpdf_service_api_key'), - '#description' => $this->t('You need to sign up for an API key at <a href="@link">FillPDF Service</a>', [ - '@link' => Url::fromUri('https://fillpdf.io')->toString(), - ]), + '#description' => $this->t('You need to get an API key from your service.'), ]; $form['fillpdf_service']['remote_protocol'] = [ '#type' => 'radios', '#title' => $this->t('Use HTTPS?'), '#description' => $this->t('It is recommended to select <em>Use HTTPS</em> for this option. Doing so will help prevent - sensitive information in your PDFs from being intercepted in transit between your server and the remote service. <strong>FillPDF Service will only work with HTTPS.</strong>'), + sensitive information in your PDFs from being intercepted in transit between your server and the remote service.'), '#default_value' => $config->get('remote_protocol'), '#options' => [ 'https' => $this->t('Use HTTPS'), diff --git a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php index 24d90d22ec1896be504e6c19305e57be70f2b303..9e163e8f8031062dba6a097eb9f2746bb877410a 100644 --- a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php +++ b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php @@ -13,14 +13,8 @@ use Drupal\fillpdf\Plugin\PdfBackendBase; * @PdfBackend( * id = "fillpdf_service", * label = @Translation("FillPDF Service"), - * description = @Translation( - * "No technical prerequisites. - * Sign up for <a href=':url'>FillPDF Service</a>.", - * arguments = { - * ":url" = "https://fillpdf.io" - * } - * ), - * weight = -10 + * description = @Translation("A remote API service."), + * weight = 10 * ) */ class FillPdfServicePdfBackend extends PdfBackendBase { diff --git a/tests/src/Functional/FillPdfSettingsFormTest.php b/tests/src/Functional/FillPdfSettingsFormTest.php index db222d71ae7814369ac6016b7656eed578bcd4e0..561657079e85f5efe366fc9332e1001eaf17c168 100644 --- a/tests/src/Functional/FillPdfSettingsFormTest.php +++ b/tests/src/Functional/FillPdfSettingsFormTest.php @@ -44,7 +44,6 @@ class FillPdfSettingsFormTest extends BrowserTestBase { $this->drupalGet(Url::fromRoute('fillpdf.settings')); $this->assertSession()->pageTextContains('Public files (site default)'); $this->assertSession()->checkboxChecked('edit-template-scheme-public'); - $this->assertSession()->checkboxChecked('edit-backend-fillpdf-service'); // Now set the site default to 'private'. $config = $this->container->get('config.factory') @@ -57,7 +56,6 @@ class FillPdfSettingsFormTest extends BrowserTestBase { $this->drupalGet(Url::fromRoute('fillpdf.settings')); $this->assertSession()->pageTextContains('Private files (site default)'); $this->assertSession()->checkboxChecked('edit-template-scheme-private'); - $this->assertSession()->checkboxChecked('edit-backend-fillpdf-service'); } /** @@ -167,7 +165,10 @@ class FillPdfSettingsFormTest extends BrowserTestBase { // FillPDF is not yet configured. The settings form is however initialized // with the 'fillpdf_service' backend. Save that configuration. $this->drupalGet(Url::fromRoute('fillpdf.settings')); - $this->submitForm([], 'Save configuration'); + $edit = [ + 'backend' => 'fillpdf_service', + ]; + $this->submitForm($edit, 'Save configuration'); // There's currently no validation, so the 'backend' setting should be // both submitted and stored. diff --git a/tests/src/Traits/TestFillPdfTrait.php b/tests/src/Traits/TestFillPdfTrait.php index 4ebe67463f32f125e5c13e474d13b2954fef9c88..8b5e846dc0afa874bbb6874c6cdee5948d2fd4c8 100644 --- a/tests/src/Traits/TestFillPdfTrait.php +++ b/tests/src/Traits/TestFillPdfTrait.php @@ -73,9 +73,9 @@ trait TestFillPdfTrait { * @param string $api_key * An API key. * @param string $api_endpoint - * (optional) An API endpoint. Defaults to 'https://www.fillpdf.io'. + * An API endpoint. */ - protected function configureFillPdfServiceBackend($api_key, $api_endpoint = 'https://www.fillpdf.io') { + protected function configureFillPdfServiceBackend($api_key, $api_endpoint) { // Configure FillPDF Service. $edit = [ 'template_scheme' => 'public',