Description of the need
While working on https://github.com/backdrop/backdrop-issues/issues/2949 I wanted the ability to add field tokens to only the bundles where the fields were used. But AFAICT there is not currently any way to add token info for a specific bundle.
I don't remember this being a problem in Drupal, but I couldn't find any similar issues where this has already been solved.
Proposed solution
In hook_token_info()
:
* Add a new (optional) 'sub_types' key to the types
associative array. This key would define another associative array containing sub types of tokens (bundle names, for example).
* Add a new (optional) 'sub_types' key for each token defined in the associative array of tokens
.
These sub_types can later be used to limit the availability of those tokens, perhaps in the token browser UI.
On the URL Alias Patterns page, we could provide a specific browser for each alias type. The browser for Post
, for example, would include all the tokens for Post fields, but none of the tokens for Page fields. The browser for the general Content
alias type would be the same one we have now (with all the possible options - including some that may not exist).
Content returned from hook_token_info() could look something like this:
function node_token_info() {
$types = array(
'node' => array(
'name' => t('Content'),
'description' => t('Tokens related to individual pieces of content, or "nodes".'),
'needs-data' => 'node',
'sub_types' => array('page', 'post', 'book'),
),
...
);
...
}
function book_token_info() {
$info['tokens']['node']['book'] = array(
'name' => t('Book'),
'description' => t('The book page associated with the node.'),
'type' => 'menu-link',
'sub_types' => array('book'),
);
return $info;
}
Alternatives that have been considered
- ?
Additional information
Draft of feature description for Press Release (1 paragraph at most)
Backdrop now includes subtypes for tokens.
Recent comments
Sounds like the Stripe processor isn’t fully initialising, so the extension tries to call create() on a missing Stripe client. On Backdrop/CiviCRM this usually happens when the payment processor...
Getting Error after submitting event register form By using Stripe Payment Processor
Welcome to Backdrop! For your setup, you’ll want to create a subtheme of Bootstrap5 Lite itself; the Bootswatch styles (like Cerulean) are just presets that B5 Lite loads, and you can “lock in”...
Basic Theme designing questions, using Bootstrap5 Lite
Hi Rob, Welcome to Backdrop! Here’s a quick overview: Subtheming Bootswatch: You should create your subtheme based on Bootstrap5 Lite, not directly on a Bootswatch style....
Basic Theme designing questions, using Bootstrap5 Lite