Skip to content
Snippets Groups Projects

Draft: Module review

3 unresolved threads
3 files
+ 5
0
Compare changes
  • Side-by-side
  • Inline
Files
3
<?php
// This should probably reside in the parent module.
    • Maintainer

      This isn't possible because it would introduce a dependency on drupal/fillpdf - which the parent module can't have.

      We can open a follow-up issue to convert this controller logic into a plugin, and then move the controller to the parent module and look for a plugin etc. but that's part of generically supporting multiple different certificate types on one site which isn't necessary for the absolute minimum.

      Edited by catch
      • Author Maintainer

        We could use a plugin system and generate that link from a plugin but ok, I agree that can be done later when we'll have at least one more certificate type.

      • Please register or sign in to reply
Please register or sign in to reply
declare(strict_types=1);
namespace Drupal\lms_certificate_fillpdf\Controller;
Loading