Snippet: PHP Snippet Adding subtree notification rules

Code sample

The defined variables are:

  • $nodeID: id of the node for which we want to add a subtree notification rule
  • $userID: id of the user for which we want to add the notification rule
$nodeIDList = eZSubtreeNotificationRule::fetchNodesForUserID( $userID, false );

if ( !in_array( $nodeID, $nodeIDList ) )
{
    $rule =& eZSubtreeNotificationRule::create( $nodeID, $userID );
    $rule->store();
}