0
votes
1answer
10 views

Drupal - Escape token value

I am using this: $description = token_replace('[node:field-description]', array('node' => $node)); in a php code that I have created for a rule. But when a description contains a quote it gives ...
0
votes
1answer
11 views

CIVICRM 3.4 Drupal 6 custom token is not inserted in automatic mailing but in manual it is

Like in the title. I have a problem with my own custom token implemented via hook_civicrm_tokens and also hook_civicrm_tokenValues. When I try to send an email manualy, the token appears correctly in ...
0
votes
1answer
26 views

Pathauto is not updating child urls when the parent url is changed

my pathauto settings for nodes are [node:menu-link:parent:url:path]/[node:title]/ if i change the url of a menu parent, the urls for child nodes are not updated. for example i have category-xyz/ ...
0
votes
0answers
66 views

Drupal 7 - How To Change The Node That Token Displays

I am trying to display two random nodes within one using tokens(i.e. [node:nid], [node:title]). My question is once I display one node how can I change the data the token is loading so I can load a ...
0
votes
0answers
276 views

Drupal 7 menu token not replacing with appropriate value

I am working on somebody else's site that uses Drupal 7. They built a menu that uses menu tokens. There is one link that uses [user:uid]. The problem is that the token is only replaced with the user ...
4
votes
1answer
369 views

Drupal 7 Rules: how to send within an e-mail the url of an uploaded attachment (after node change)?

I have a Drupal 7 site with a custom node type with a custom attachment field. After a (kind of this custom) node has been published, I got an e-mail with the help of Rules module. I would like to set ...
3
votes
1answer
541 views

Using token as data selector

I created the following token; however, when I try to use site:coupons as a data selector in a loop action It does not appear in data selection browser. Note that it does appear as replacement pattern ...
0
votes
0answers
136 views

Replacing tokens in Newsletter body [closed]

I'm trying to create a custom template using the drupal Newsletter module. I need to populate the newsletter with existing content. For this, I think I need to replace a token like [node:nid] within ...
0
votes
0answers
240 views

drupal, domain access tokens, replacement patterns - how to use

How to I use replacement pattern %1 and !1 to rewrite and output in views field? For example, I want to get thisSubDomainToken.myexample.com. I'm creating a staff directory and when I want to allow ...
0
votes
5answers
195 views

Problems with PHP explode

I'm using this code: $imageurl = "http://siteadress/sites/default/files/bjorn_4.jpg"; $pieces = explode('/', $imageurl); print_r($pieces); to split up an url. The print_r gives me this result = ...
-1
votes
1answer
69 views

Drupal module forms no CSRF for anon users [closed]

My module has 2 small forms which allow visitors to submit certain information. Problem is when I am not logged in, no CSRF token is being added to the forms - so anonomous users/everyone are ...
0
votes
2answers
606 views

Drupal token current-page:query

I need to get the value of a field that is on the "Parent page" of one of my content panes. I would like to do this through the use of tokens, and the only seemingly useful one that I can find is ...
0
votes
2answers
373 views

“Show block on specific pages” drupal can tokens be used?

I want to limit a block to only being on the a users account page. In the section "Show block on specific pages" I used users/[user-name] (did not work) then I tried users/[user-id] (did not work). ...
3
votes
1answer
3k views

How do I create a custom token in Drupal 7?

I need to create a custom token that can fetch a value from a mapping table based on nids. I need to know the hooks I should implement to create the custom token.
1
vote
1answer
614 views

Drupal Anonymous Users Hidden Fields on Webform not showing up on e-mail

I'm trying to capture the url of the webform. For validated users, the code below works: %server[SERVER_NAME]%server[REQUEST_URI] For anonymous users, it does not. From Post#7, I checked out this ...
0
votes
1answer
105 views

Using panels3, how can I output a mutivalue cck field using tokens?

In my website, I have a custom content type called "projects". This type as a User Reference Field called "Project Author(s)" and another user Reference Field called "Project Supervisor(s)". These ...
2
votes
1answer
1k views

DRUPAL - How can I add user ID (UID) to the activation email oder user page?

How can I add the value user id (uid) from user db in to the activation email? like : "hi XY your ID is :1234" and I would like to print out the id on the user page. thx
1
vote
1answer
2k views

Token value as a filter for Drupal View

I am trying to make a view such that it will bring a type of content based on logged in user name. I have added username as a vocabulary term to all content. Now I want to filter the content based on ...
0
votes
1answer
682 views

Drupal: Token for date CCK field as plain text

I'm using the Rules module to send a mail and I'm inserting a token that represents a CCK Date field. This token contains HTML formatting which should not be present in a plain text mail. So when I ...
1
vote
1answer
255 views

Mail verification based on token mail action

good morning, I have created a new content type - petition, a last step has to be verification of their mail address by sending them a link to prove or to delete them from the petition. I need to get ...
0
votes
1answer
454 views

“Tokenized email action” is not picking up my tokens

I'm having some problems setting up a tokenized email to use the tokens I've created in my module. I am using this in a tokenized email [example-contact]. I've implemented the example_token_values() ...
2
votes
2answers
452 views

Refreshing existing nodes to pick up Automatic Nodetitles in Drupal

I have a set of existing nodes for a content type ('foo'). Since then I have installed the Automatic Nodetitles module, which has helped tremendously, since I no longer need to work hard to make ...
5
votes
2answers
402 views

Drupal Autoresponder with Token Module

I'm using Drupal autoresponder module - and I want to use tokens so I can include the username who has subscribed within the emails being sent... Does anybody know how this can be achieved? Thanks ...
3
votes
2answers
1k views

In Drupal, how to change the values passed to Pathauto?

I have Pathauto configured to generate an alias based on the title of a node, for a specific content type. The problem is that I want to make small changes in this title before Pathauto uses it to ...
1
vote
2answers
4k views

Drupal Token Examples of Usage

I need to include a node content in another node using some kind of placeholder, for example: [node-5663] will be translated to the node's content (body) where node-id matches 5663. The example above ...