Parent Directory
|
Revision Log
|
Revision Graph
Added install file to call actions_synchronize().
| 1 | <?php |
| 2 | /** |
| 3 | * Implementation of hook_install(). |
| 4 | */ |
| 5 | function actions_token_email_install() { |
| 6 | actions_synchronize(FALSE, TRUE); |
| 7 | } |
| 8 | |
| 9 | /** |
| 10 | * Implementation of hook_uninstall(). |
| 11 | */ |
| 12 | function actions_token_email_uninstall() { |
| 13 | actions_synchronize(FALSE, TRUE); |
| 14 | } |
| 15 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |