X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fextensions%2Fext-profile.php;h=3f29ace16a829989619ba7c8af397688b1abc207;hp=aab7da13bd67d411c8f2a4788ed53c8021bc939d;hb=e5527fd38a6585c8466dc28d013f12d21eb7c07a;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60 diff --git a/inc/extensions/ext-profile.php b/inc/extensions/ext-profile.php index aab7da13bd..3f29ace16a 100644 --- a/inc/extensions/ext-profile.php +++ b/inc/extensions/ext-profile.php @@ -1,7 +1,7 @@ profile_update und prof_reupdate > 0 sind."); + setExtensionUpdateNotes("Profilaktualisierungsmails werden nur dann ausgesendet, wenn profile_update und resend_profile_update > 0 sind."); break; case '0.0.6': // SQL queries for v0.0.6 @@ -116,22 +113,37 @@ switch (getExtensionMode()) // Update notes (these will be set as task text!) setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert."); break; - } + + case '0.1.0': // SQL queries for v0.1.0 + // Add config SQLs + addConfigAddSql('profile_update', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 15768000'); + addConfigChangeSql('send_prof_update', 'send_profile_update', "ENUM('Y','N') NOT NULL DEFAULT 'Y'"); + addConfigAddSql('send_profile_update', "ENUM('Y','N') NOT NULL DEFAULT 'Y'"); + addConfigAddSql('resend_profile_update', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 172800'); + addConfigAddSql('profile_lock', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 86400'); + + // Admin menu + addAdminMenuSql('setup','config_profile','Mitgliedsprofile','Einstellungen für Mitgliedprofile.',14); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Tabellenspalten aus Konfiguration in diese Erweiterung verschoben und umbenannt."); + break; + } // END - switch break; case 'modify': // When the extension got modified break; - case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. + case 'test': // For testing purposes break; case 'init': // Do stuff when extension is initialized break; default: // Unknown extension mode - DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode())); + reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName())); break; -} +} // END - switch // [EOF] ?>