You are here

function protected_node_email_subject in Protected Node 6

Same name and namespace in other branches
  1. 7 protected_node.settings.inc \protected_node_email_subject()
  2. 1.0.x protected_node.settings.inc \protected_node_email_subject()

The default email subject sent to users to whom you give access to a protected node.

2 calls to protected_node_email_subject()
protected_node_admin_settings in ./protected_node.settings.inc
Define the settings form
protected_node_mail in ./protected_node.mail.inc
Implementation of hook_mail().
2 string references to 'protected_node_email_subject'
protected_node_admin_settings in ./protected_node.settings.inc
Define the settings form
protected_node_mail in ./protected_node.mail.inc
Implementation of hook_mail().

File

./protected_node.settings.inc, line 30
Configuration file for the protected_node module.

Code

function protected_node_email_subject() {
  return t("Please visit my website...");
}