Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/20/2024 in all areas

  1. This is not native. It is a field definition for a custom field 'langs' that lets you choose one or more language. The array format of the field definition that I posted is used in the @bernhard's fabulous RokMigrations module but you can define the field manually via GUI, too, if you prefer so.
    1 point
  2. https://github.com/wanze/FieldtypeSecureFile Could get some inspiration from there. I think this is a well needed core feature personally.
    1 point
  3. In one of my projects I have a separate field 'langs' that editors can check. Definition (for RockMigrations): 'langs' => [ 'label' => 'Languages', 'tags' => 'general', 'flags' => 0, 'type' => 'FieldtypePage', 'derefAsPage' => 0, 'inputfield' => 'InputfieldCheckboxes', 'parent_id' => '', 'labelFieldName' => 'title', 'optionColumns' => 1, 'template_id' => 'language', ], So it is a page reference field that gives you checkboxes for each language. You could then use the value of this field in your logic for the language switch.
    1 point
  4. I have a textarea in a Fieldset (page), when I had a link to a text I get these warnings (14 times the same): Warning: Attempt to read property "fieldgroup" on null in [...]wire/modules/Process/ProcessPageEditLink/ProcessPageEditLink.module on line 573 Warning: foreach() argument must be of type array|object, null given in [...]wire/modules/Process/ProcessPageEditLink/ProcessPageEditLink.module on line 573 I search but couldn't find anything. Anyone have an idea why these warning?
    1 point
  5. For anyone reading this, I have been working with @Spinbox to implement a webhook solution + other backup (of session) solution. It is currently being (user) tested and has been implemented as Padloper 011. Will keep you posted!
    1 point
  6. To add on to elabx's response, I saw in Mautic's Developer Docs that there is a REST API with a methods for creating contacts etc etc: https://developer.mautic.org/#create-contact
    1 point
  7. No ready-to-go module that I can find. I don't know the details but they seem to support basic authentication to the service just fine. So probably just install their library through composer (or manually) and do the API call on the POST request of your frontend form. https://developer.mautic.org/?php#basic-authentication https://github.com/mautic/api-library
    1 point
×
×
  • Create New...