<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: HowTo: Configuring Triggers and Actions in Drupal 6</title>
	<atom:link href="http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/</link>
	<description>Web Design in Northern Ireland.</description>
	<lastBuildDate>Thu, 08 Dec 2011 10:52:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: dupls</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27759</link>
		<dc:creator>dupls</dc:creator>
		<pubDate>Tue, 15 Dec 2009 02:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27759</guid>
		<description>I am trying to use the triggers on drupal 6 and have setup an action. When users are logged in I want to redirect them. I specify a node/xxx but it doesn&#039;t work.
I have also tried the login destination module and put this code in to direct users.
global $user;
  if ($user-&gt;uid == 1) {
    // Redirect the Administrator
    return &#039;admin&#039;;
  } elseif ($user-&gt;uid == 2) {
    // Redirect the Site Owner to the &#039;create content&#039; page
    return &#039;node/add&#039;;
 } elseif ($user-&gt;uid == 3) {
//redirect sti users
echo uid;
return &#039;node/xx&#039;;
  } else {
     return &#039;node&#039;;
  }

I have event tried to specify a static URL using login destintation. 
That doesn&#039;t work either.

Ideally I need to redirect users according to roles but a simple redirect per user if it worked would help.</description>
		<content:encoded><![CDATA[<p>I am trying to use the triggers on drupal 6 and have setup an action. When users are logged in I want to redirect them. I specify a node/xxx but it doesn&#8217;t work.<br />
I have also tried the login destination module and put this code in to direct users.<br />
global $user;<br />
  if ($user-&gt;uid == 1) {<br />
    // Redirect the Administrator<br />
    return &#8216;admin&#8217;;<br />
  } elseif ($user-&gt;uid == 2) {<br />
    // Redirect the Site Owner to the &#8216;create content&#8217; page<br />
    return &#8216;node/add&#8217;;<br />
 } elseif ($user-&gt;uid == 3) {<br />
//redirect sti users<br />
echo uid;<br />
return &#8216;node/xx&#8217;;<br />
  } else {<br />
     return &#8216;node&#8217;;<br />
  }</p>
<p>I have event tried to specify a static URL using login destintation.<br />
That doesn&#8217;t work either.</p>
<p>Ideally I need to redirect users according to roles but a simple redirect per user if it worked would help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27379</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Tue, 04 Nov 2008 22:35:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27379</guid>
		<description>Is it possible to trigger an action based on a date in a content record? For example, suppose I have created a content type called &quot;Projects&quot; that includes a Date field called &quot;Deadline&quot;. I want to be able to send an email when the current date is equal to the value of the date in that field -- or better yet, when the current date is X days before the deadline date. If the latter isn&#039;t possible, I could always add another field called Reminder Date and have the trigger look at that field...

Thanks!</description>
		<content:encoded><![CDATA[<p>Is it possible to trigger an action based on a date in a content record? For example, suppose I have created a content type called &#8220;Projects&#8221; that includes a Date field called &#8220;Deadline&#8221;. I want to be able to send an email when the current date is equal to the value of the date in that field &#8212; or better yet, when the current date is X days before the deadline date. If the latter isn&#8217;t possible, I could always add another field called Reminder Date and have the trigger look at that field&#8230;</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oliondor</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27251</link>
		<dc:creator>oliondor</dc:creator>
		<pubDate>Wed, 27 Aug 2008 08:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27251</guid>
		<description>Hi,

When using actions and triggers on Drupal 6 I (the admin) get an email notification even when I post a comment with the admin user account, do you know how to disable this ? I don&#039;t want to be notified of my own comments.

Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>When using actions and triggers on Drupal 6 I (the admin) get an email notification even when I post a comment with the admin user account, do you know how to disable this ? I don&#8217;t want to be notified of my own comments.</p>
<p>Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suchi Garg</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27246</link>
		<dc:creator>Suchi Garg</dc:creator>
		<pubDate>Wed, 20 Aug 2008 18:15:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27246</guid>
		<description>How can I trigger an event on a node &quot;Publish&quot;??
I have a setup where anonymous users can submit articles, but they are approved by the admin. The admin schedules the approved articles for future publish. I need to send a tokenised email to the user when the article is published.
This seems to be a fairly basic requirement, but i cant seem to find how to do it. I had this working fine in drupal 4.x.
Please help.</description>
		<content:encoded><![CDATA[<p>How can I trigger an event on a node &#8220;Publish&#8221;??<br />
I have a setup where anonymous users can submit articles, but they are approved by the admin. The admin schedules the approved articles for future publish. I need to send a tokenised email to the user when the article is published.<br />
This seems to be a fairly basic requirement, but i cant seem to find how to do it. I had this working fine in drupal 4.x.<br />
Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hall</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27205</link>
		<dc:creator>Hall</dc:creator>
		<pubDate>Tue, 05 Aug 2008 06:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27205</guid>
		<description>Is there any way to make a role change a trigger. My client has a database of users, some of them lapsed clients, who are blocked users. When they register for his conference, he changes their role from blocked to active and adds a role. When that happens, he&#039;d like it to automatically trigger a modified version of the first registration letter, including password and basic instructions. So far all we can figure out to do is delete the existing user and re-add them, which is insanely cumbersome. Any suggestions?</description>
		<content:encoded><![CDATA[<p>Is there any way to make a role change a trigger. My client has a database of users, some of them lapsed clients, who are blocked users. When they register for his conference, he changes their role from blocked to active and adds a role. When that happens, he&#8217;d like it to automatically trigger a modified version of the first registration letter, including password and basic instructions. So far all we can figure out to do is delete the existing user and re-add them, which is insanely cumbersome. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27176</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Tue, 17 Jun 2008 17:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27176</guid>
		<description>Is it possible to use the Trigger module to trigger a change in User Role upon activation? I would like to be able to promote my users to new roles after completing a quiz.</description>
		<content:encoded><![CDATA[<p>Is it possible to use the Trigger module to trigger a change in User Role upon activation? I would like to be able to promote my users to new roles after completing a quiz.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avangelist</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27150</link>
		<dc:creator>Avangelist</dc:creator>
		<pubDate>Mon, 12 May 2008 12:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27150</guid>
		<description>Nice and simple, perhaps too simple.

I am trying to find out how to email notify a page is changed and the flag translation as outdated checkbox is unticked.

Any Ideas</description>
		<content:encoded><![CDATA[<p>Nice and simple, perhaps too simple.</p>
<p>I am trying to find out how to email notify a page is changed and the flag translation as outdated checkbox is unticked.</p>
<p>Any Ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard McGarry</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27112</link>
		<dc:creator>Gerard McGarry</dc:creator>
		<pubDate>Wed, 09 Apr 2008 19:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27112</guid>
		<description>Hi Doug - glad you liked the tutorial!

As for doing comment notification for &lt;em&gt;readers&lt;/em&gt;, I don&#039;t think the triggers and actions features can go as far as the notify plugin - you&#039;re basically restricted to a manually entered email address.

As well as that, there&#039;s no way to get the consent of the other commenters. You&#039;d ideally want an opt-in button so that people can choose to subscribe to comments. You&#039;re probably better off with the Notify module to be honest.</description>
		<content:encoded><![CDATA[<p>Hi Doug &#8211; glad you liked the tutorial!</p>
<p>As for doing comment notification for <em>readers</em>, I don&#8217;t think the triggers and actions features can go as far as the notify plugin &#8211; you&#8217;re basically restricted to a manually entered email address.</p>
<p>As well as that, there&#8217;s no way to get the consent of the other commenters. You&#8217;d ideally want an opt-in button so that people can choose to subscribe to comments. You&#8217;re probably better off with the Notify module to be honest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doug</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27111</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Wed, 09 Apr 2008 13:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27111</guid>
		<description>This is a great tutorial. I&#039;m curious whether you&#039;ve been able to set up something similar to comment notify - http://drupal.org/project/comment_notify - with Drupal 6. I&#039;d really like both the node author and anyone that has left a comment to receive an email update when someone makes a new comment on a node. I can get the node author part working, by setting the recipient to &quot;%author&quot; - but I can&#039;t figure out how to also alert anyone that has commented on the node. If you have any ideas, I&#039;d love to know!

Thanks again for sharing this tutorial.</description>
		<content:encoded><![CDATA[<p>This is a great tutorial. I&#8217;m curious whether you&#8217;ve been able to set up something similar to comment notify &#8211; <a href="http://drupal.org/project/comment_notify" rel="nofollow">http://drupal.org/project/comment_notify</a> &#8211; with Drupal 6. I&#8217;d really like both the node author and anyone that has left a comment to receive an email update when someone makes a new comment on a node. I can get the node author part working, by setting the recipient to &#8220;%author&#8221; &#8211; but I can&#8217;t figure out how to also alert anyone that has commented on the node. If you have any ideas, I&#8217;d love to know!</p>
<p>Thanks again for sharing this tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard McGarry</title>
		<link>http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/comment-page-1/#comment-27101</link>
		<dc:creator>Gerard McGarry</dc:creator>
		<pubDate>Sat, 05 Apr 2008 07:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/04/03/howto-configuring-triggers-and-actions-in-drupal-6/#comment-27101</guid>
		<description>I&#039;d be flattered to be a part of Drupal Planet, especially because I don&#039;t think there are enough easy to grasp tutorials for the platform.

Any idea how to get included?</description>
		<content:encoded><![CDATA[<p>I&#8217;d be flattered to be a part of Drupal Planet, especially because I don&#8217;t think there are enough easy to grasp tutorials for the platform.</p>
<p>Any idea how to get included?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

