You are here

function protected_node_email_subject in Protected Node 7

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

Helper function.

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

4 calls to protected_node_email_subject()
ProtectedNodeMail::testSendMail in tests/protected_node.mail_test.test
Test that a mail is send when a protected node is created.
protected_node_admin_settings in ./protected_node.settings.inc
Define the settings form.
protected_node_mail in ./protected_node.mail.inc
Implements hook_mail().
protected_node_variable_info in ./protected_node.variable.inc
Implements hook_variable_info().
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
Implements hook_mail().

File

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

Code

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