Ignore:
Timestamp:
May 31, 2009, 9:35:51 PM (15 years ago)
Author:
plg
Message:

feature 1020 added: ability to subscribe to Piwigo Announcement Newsletter from
Piwigo itself. Admins can perform this action at the end of installation or on
administration panel index.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/admin/include/functions.php

    r3196 r3381  
    21152115  return $username;
    21162116}
     2117
     2118function get_newsletter_subscribe_base_url($language) {
     2119  $subscribe_domain = 'piwigo.org';
     2120  if ('fr_FR' == $language) {
     2121    $subscribe_domain = 'fr.piwigo.org';
     2122  }
     2123 
     2124  return 'http://'.$subscribe_domain.'/announcement/subscribe.php?email=';
     2125}
    21172126?>
Note: See TracChangeset for help on using the changeset viewer.