Support Serial Field

Created on 9 April 2023, almost 2 years ago

Problem/Motivation

I needed barcodes for stock item stickers with automatically generated unique numbers, so I settled on this module plus the serial module .

Proposed resolution

Include 'serial' in the plugin's annotation.

Feature request
Status

Active

Version

2.0

Component

Code

Created by

🇬🇧United Kingdom griz

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @griz
  • 🇬🇧United Kingdom griz

    Works for me. RTBC?

  • 🇺🇸United States tr Cascadia

    Well, serial isn't one of the built-in Drupal core field types. It is not a scalable solution to keep adding names of contributed field types. I would prefer a more general solution, using FormatterBase::isApplicable() and possibly removing the field_types annotation if it is no longer relevant.

  • Status changed to Needs work almost 2 years ago
  • 🇺🇸United States tr Cascadia
  • 🇺🇸United States tr Cascadia
  • 🇺🇸United States SocialNicheGuru

    Just uploading a rerolled version for Barcodes 2.0.x.

  • 🇺🇸United States tr Cascadia

    Like I said, this will not be added to the module. This issue is still active because I'm open to a solution that allows site builders to customize this without hacking or patching code.

    The standard way to customize Drupal for your site is to implement a hook. This would work for your needs, for example:

    /**
     * Implements hook_field_formatter_info_alter().
     */
    function yourmodule_field_formatter_info_alter(array &$info) {
        // Allow the barcode field formatter to be used on a new field type.
        $info['barcode']['field_types'][] = 'serial';
    }

    And I feel that for reference I need to add that "yourmodule" should be replaced with the name of your module that you are using to customize your site. Read the documentation on how to implement a hook for details.

  • 🇺🇸United States tr Cascadia
  • Status changed to Active 7 months ago
  • 🇺🇸United States tr Cascadia
  • 🇮🇹Italy kopeboy Milan

    I think the most important would be link fields:

    1. having the option to show the link under the code would be great, so thatusers with the scanning device can scan it, but others (say mobile phone users, when showing a QR code) may directly click the link to reach the same destination;
    2. having the option to use custom protocols (for deep links) would be great too, ie. not only https:/ but myapp:/ or any other (whitelisted from settings maybe) open source protocol
  • 🇺🇸United States tr Cascadia

    This issue outlines how to extend the Barcodes module to support additional field types. The link field is already supported, and so is displaying the encoded text below the barcode. The template can be used to explicitly position or style the text, including styling as a clickable link.

    Custom protocols should really be implemented as part of the field definition - the FieldFormatter (Barcodes) is only involved with displaying the field contents, and does not participate in validating or constraining the contents of the field. That is done by the FieldType and the FieldWidget.

    You can extend the core Link field to support additional protocols by implementing hook_field_info_alter() and changing the field constraints. See core/modules/workspaces/src/Hook/EntityTypeInfo.php for an example.

Production build 0.71.5 2024