source: sipes/modules_contrib/returnpath/returnpath.install @ c43ea01

stableversion-3.0
Last change on this file since c43ea01 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100755
File size: 432 octetos
Línea 
1<?php
2// $Id: returnpath.install,v 1.2 2008/08/29 08:41:21 deciphered Exp $
3
4/**
5 * @file
6 */
7
8function returnpath_install() {
9  $path = drupal_get_path('module', 'returnpath');
10  variable_set('smtp_library', "{$path}/dummyfile.php");
11  drupal_set_message(t('Return-Path mail handler installed.'));
12}
13
14function returnpath_uninstall() {
15  variable_del('smtp_library');
16  drupal_set_message(t('Return-Path mail handler removed.'));
17}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.