Update of /cvsroot/phpwebsite-comm/modules/mailinglists/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3572/conf Added Files: config.php error.php Removed Files: approval.php boost.php controlpanel.php help.php layout.php module_rights.txt Log Message: Committing complete rewrite which supports phpWebSite 1.x --- boost.php DELETED --- --- layout.php DELETED --- --- approval.php DELETED --- --- module_rights.txt DELETED --- --- controlpanel.php DELETED --- --- NEW FILE: config.php --- <?php /** * Mailing Lists - phpWebSite Module * * See docs/credits.txt for copyright information * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Id: config.php,v 1.1 2008/01/02 21:59:27 blindman1344 Exp $ * @author Greg Meiste <blindman1344 [at] users dot sourceforge dot net> */ /* Date format to use within the Mailing Lists module. */ define('MAILINGLISTS_DATE_FORMAT', '%m/%d/%Y %r'); /* Default values for new Mailing Lists. */ define('MAILINGLISTS_DEFAULT_OPT_IN_MSG', "You have received this email because you have subscribed to the \"[LISTNAME]\" mailing list. There is one more step before your subscription is complete. You need to confirm your email address to us before you will begin to receive emails. To do so, please go to the following URL:\n\n[URL]\n\nIf you have gotten this in error, please ignore this email. You will not receive future emails from us."); define('MAILINGLISTS_DEFAULT_SUBSCRIBE_MSG', "Your subscription to the \"[LISTNAME]\" mailing list is now complete. You will begin to receive all messages we send out to this list.\n\nTo unsubscribe, just return to our website and login to your subscription menu."); define('MAILINGLISTS_DEFAULT_UNSUBSCRIBE_MSG', "Your subscription to the \"[LISTNAME]\" mailing list has been terminated. You will no longer receive messages we send out to this list.\n\nTo subscribe again, just return to our website and login to your subscription menu."); /* Number of lines for an email body textarea. */ define('MAILINGLISTS_TEXTAREA_ROWS', 10); ?> --- NEW FILE: error.php --- <?php /** * Mailing Lists - phpWebSite Module * * See docs/credits.txt for copyright information * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Id: error.php,v 1.1 2008/01/02 21:59:27 blindman1344 Exp $ * @author Greg Meiste <blindman1344 [at] users dot sourceforge dot net> */ $errors[MAILINGLISTS_OBJ_INCOMPLETE] = dgettext('mailinglists', 'Object incomplete.'); ?> --- help.php DELETED --- |