Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
email
Commits
7a9b5525
Commit
7a9b5525
authored
Jul 30, 2008
by
Matthias Hutterer
Browse files
added install file with hooks for content_notify
parent
1ebc7112
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
email.install
email.install
+34
-0
No files found.
email.install
0 → 100644
View file @
7a9b5525
<?php
/**
* Implementation of hook_install().
*/
function
email_install
()
{
content_notify
(
'install'
,
'email'
);
}
/**
* Implementation of hook_uninstall().
*/
function
email_uninstall
()
{
content_notify
(
'uninstall'
,
'email'
);
}
/**
* Implementation of hook_enable().
*
* Notify content module when this module is enabled.
*/
function
email_enable
()
{
content_notify
(
'enable'
,
'email'
);
}
/**
* Implementation of hook_disable().
*
* Notify content module when this module is disabled.
*/
function
email_disable
()
{
content_notify
(
'disable'
,
'email'
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment