-
- Downloads
Almost add support for parsing.
There's lots of changes here. I should have committed more often. Anyway, the gist of it is: - General code conversion to Drupal 8 patterns. I've taken shortcuts here and there but mostly avoid that. No idea on the quality. Hopefully, someone can give me some feedback. - Two new entity types, FillPdfForm and FillPdfFormField. These correspond to the old {fillpdf_forms} and {fillpdf_fields} tables. Now they're finally entities, so Views support will be possible for those of you who wanted it. I was finally forced to do this, and I'm glad. - PDF-filling methods are now PLUGINS!!! This means they all implement FillPdfBackendPluginInterface, and this basically achieves the same thing I was trying to do with the failed pdf_forms project. Anyone who wants to add their own backend can already do it; the fillpdf_service_backend configuration variable is used to select the correct backend. It should match the annotation ID. Look at FillPdfServiceFillPdfBackend to get an idea of how to structure the plugin. - Better use of actual entity references. FillPdfForms store a reference to their underlying Files instead of just an ID. Same with FillPdfFormField -> FillPdfForm.
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- config/install/fillpdf.settings.yml 3 additions, 0 deletionsconfig/install/fillpdf.settings.yml
- fillpdf.admin.inc 59 additions, 69 deletionsfillpdf.admin.inc
- fillpdf.info.yml 2 additions, 0 deletionsfillpdf.info.yml
- fillpdf.install 177 additions, 191 deletionsfillpdf.install
- fillpdf.links.menu.yml 7 additions, 1 deletionfillpdf.links.menu.yml
- fillpdf.module 8 additions, 19 deletionsfillpdf.module
- fillpdf.routing.yml 13 additions, 1 deletionfillpdf.routing.yml
- fillpdf.services.yml 4 additions, 0 deletionsfillpdf.services.yml
- src/Entity/FillPdfForm.php 72 additions, 0 deletionssrc/Entity/FillPdfForm.php
- src/Entity/FillPdfFormField.php 84 additions, 0 deletionssrc/Entity/FillPdfFormField.php
- src/FillPdfBackendManager.php 37 additions, 0 deletionssrc/FillPdfBackendManager.php
- src/FillPdfBackendManagerInterface.php 12 additions, 0 deletionssrc/FillPdfBackendManagerInterface.php
- src/FillPdfBackendPluginInterface.php 46 additions, 0 deletionssrc/FillPdfBackendPluginInterface.php
- src/FillPdfFormFieldInterface.php 13 additions, 0 deletionssrc/FillPdfFormFieldInterface.php
- src/FillPdfFormInterface.php 16 additions, 0 deletionssrc/FillPdfFormInterface.php
- src/Form/FillPdfAdminFormBase.php 24 additions, 0 deletionssrc/Form/FillPdfAdminFormBase.php
- src/Form/FillPdfOverviewForm.php 231 additions, 0 deletionssrc/Form/FillPdfOverviewForm.php
- src/Form/FillpdfSettingsForm.php 11 additions, 11 deletionssrc/Form/FillpdfSettingsForm.php
- src/Plugin/FillPdfBackend/FillPdfServiceFillPdfBackend.php 121 additions, 0 deletionssrc/Plugin/FillPdfBackend/FillPdfServiceFillPdfBackend.php
Loading
Please register or sign in to comment