Adding Custom Rules Conditions in Drupal 7
Submitted by ngmaloney@gmail.com on
I recently needed to create a rule that notifies users of a certain role when their comment is published. The rule generates a custom email to send them. Much to my surprise, there is not a default Rule condition for "Comment is Published". I found this to be interesting as there is one for "Content is Published". Fortunately the Rules API is flexible and fairly well documented. I had to create a custom 1-off module to define this condition but the code itself was very simple
/**
* Implementation of hook_rules_condition_info().
*/
function mymodule_rules_condition_info() {
return array(
'mymodule_rules_condition_comment_published' =----> array(
'group' => 'comments',
'label' => t('Comment is published'),
'arguments' => array(
'comment' => array(
'type' => 'comment',
'label' => t('updated comment')
),
'comment_unchanged' => array(
'type' => 'comment',
'label' => t('unchanged comment'),
'handler' => 'rules_events_entity_unchanged'
),
),
'module' => 'mymodule',
),
);
}
/*
* Condition: Comment is published
*/
function mymodule_rules_condition_comment_published($comment, $comment_unchanged, $settings) {
if($comment_unchanged->status == 0 && $comment->status == 1) {
return true;
}
else {
return false;
}
}
The code is pretty self-explanatory. It defines the role using the hook_rules_condition_info() hook, then compares the (saved) comment and the unchanged_comment. Below is a screenshot of the entire configuration of my rule:
219 Comments
just what I was looking for....
Submitted by Christopher Stevens (not verified) on
uggs australia boxing day
Submitted by uggs australia ... (not verified) on
nfl jerseys cyber monday 2013
Submitted by nfl jerseys cyb... (not verified) on
nba swingman jerseys cheap
Submitted by nba swingman je... (not verified) on
replica louboutin pumps
Submitted by replica loubout... (not verified) on
cheap louis vuitton
Submitted by cheap louis vuitton (not verified) on
louis vuitton bags sale
Submitted by louis vuitton b... (not verified) on
cheap real uggs
Submitted by cheap real uggs (not verified) on
cheap uggs
Submitted by cheap uggs (not verified) on
cheap jerseys from china
Submitted by cheap jerseys f... (not verified) on
paisley uggs for cheap
Submitted by paisley uggs fo... (not verified) on
cheap authentic jerseys
Submitted by cheap authentic... (not verified) on
cheap replica soccer jerseys
Submitted by cheap replica s... (not verified) on
925 sterling
Submitted by 925 sterling (not verified) on
8-mm Spring Clasp DIY Findings
Submitted by 8-mm Spring Cla... (not verified) on
how to make a leather bracelet with beads
Submitted by how to make a l... (not verified) on
cell phone brands
Submitted by cell phone brands (not verified) on
sailing knot bracelets
Submitted by sailing knot br... (not verified) on
the protector
Submitted by the protector (not verified) on
smile at people
Submitted by smile at people (not verified) on
discount jewelry making supplies
Submitted by discount jewelr... (not verified) on
how to make square knot hemp bracelets
Submitted by how to make squ... (not verified) on
tassel phone charm
Submitted by tassel phone charm (not verified) on
friendship charm bracelets
Submitted by friendship char... (not verified) on
diy fashion jewelry
Submitted by diy fashion jewelry (not verified) on
charm bracelet kits
Submitted by charm bracelet kits (not verified) on
cheap nfl jerseys wholesale
Submitted by cheap nfl jerse... (not verified) on
cheap mlb jerseys from china
Submitted by cheap mlb jerse... (not verified) on
cheap louis vuitton wallets
Submitted by cheap louis vui... (not verified) on
wholesale patriots jerseys china
Submitted by wholesale patri... (not verified) on
cheap soccer jerseys in china
Submitted by cheap soccer je... (not verified) on
cheap nba jerseys
Submitted by cheap nba jerseys (not verified) on
wholesale china jerseys
Submitted by wholesale china... (not verified) on
louis vuitton handbags outlet
Submitted by louis vuitton h... (not verified) on
babyliss 2100
Submitted by babyliss 2100 (not verified) on
hollister website
Submitted by hollister website (not verified) on
louis vuitton belt replica
Submitted by louis vuitton b... (not verified) on
fake oakley oil rig white
Submitted by fake oakley oil... (not verified) on
replica louis vuitton uk sale online
Submitted by replica louis v... (not verified) on
cheap michael kors
Submitted by cheap michael kors (not verified) on
cheap hollister sweatpants online sale
Submitted by cheap hollister... (not verified) on
cheap replica oakleys
Submitted by cheap replica o... (not verified) on
No Prob!
Submitted by admin on
nfl jerseys cheap
Submitted by nfl jerseys cheap (not verified) on
cheap womens seahawks jerseys
Submitted by cheap womens se... (not verified) on
mlb jerseys from china
Submitted by mlb jerseys fro... (not verified) on
wholesale jerseys china
Submitted by wholesale jerse... (not verified) on
plumdale uggs for cheap online sale
Submitted by plumdale uggs f... (not verified) on
cheap soccer jerseys
Submitted by cheap soccer jerseys (not verified) on
cheap football jerseys
Submitted by cheap football ... (not verified) on
Pages
Add new comment