Ignore:
Timestamp:
Apr 12, 2011, 10:44:12 PM (13 years ago)
Author:
Eric
Message:

r10342 merged from trunk to branch 2.20

Location:
extensions/UserAdvManager/branches/2.20
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/branches/2.20/admin/UAM_admin.php

    r9909 r10343  
    3434$UAM_Exclusionlist_Error = false;
    3535
     36$dump_download = '';
    3637
    3738// +-----------------------------------------------------------------------+
     
    223224  }
    224225
     226  // Saving UAM tables and configuration settings
     227  if (isset($_POST['save']))
     228  {
     229    $dump_download = (isset($_POST['dump_download'])) ? 'true' : 'false';
     230   
     231    if(uam_dump($dump_download) and $dump_download == 'false')
     232    {
     233      array_push($page['infos'], l10n('UAM_Dump_OK'));
     234    }
     235    else
     236    {
     237      array_push($page['errors'], l10n('UAM_Dump_NOK'));
     238    }
     239  }
    225240
    226241  //Testing password enforcement
     
    372387    'UAM_VERSION'                    => $version,
    373388    'UAM_PATH'                       => UAM_PATH,
     389    'UAM_DUMP_DOWNLOAD'              => $dump_download,
    374390                'UAM_MAIL_INFO_TRUE'             => $conf_UAM[0]=='true' ?  'checked="checked"' : '' ,
    375391                'UAM_MAIL_INFO_FALSE'            => $conf_UAM[0]=='false' ?  'checked="checked"' : '' ,
  • extensions/UserAdvManager/branches/2.20/admin/template/global.tpl

    r10145 r10343  
    703703</form>
    704704
     705
     706<div id="instructionTips" class="instructionBlock" >
     707  <div id="Backup_header" class="instructionBlockHeaderCollapsed" onclick="uam_blockToggleDisplay('Backup_header', 'Backup')">
     708    <span class="cluetip" title="{'UAM_DumpTitle'|translate}|{'UAM_DumpTitle_d'|translate}">{'UAM_DumpTxt'|@translate}</span>
     709  </div>
     710 
     711  <div id="Backup" class="instructionBlockContent" style="display:none">
     712<fieldset>
     713<form method="post" action="" class="general">
     714  <p>
     715    {'UAM_Dump_Download'|@translate}&nbsp;
     716      <input type="checkbox" name="dump_download" value="true" {$UAM_DUMP_DOWNLOAD}>
     717  <br><br>
     718      <input class="submit" type="submit" value="{'UAM_Save'|@translate}" name="save" {$TAG_INPUT_ENABLED}>
     719  </p>
     720</form>
     721</fieldset>
     722  </div>
     723
     724</div>
     725
     726
    705727<div id="instructionTips" class="instructionBlock" >
    706728  <div id="Tips_header" class="instructionBlockHeaderCollapsed" onclick="uam_blockToggleDisplay('Tips_header', 'Tips')">
     
    734756</div>
    735757
     758
    736759<fieldset>
    737760  {'UAM_Support_txt'|@translate}
  • extensions/UserAdvManager/branches/2.20/changelog.txt.php

    r10169 r10343  
    239239-- 2.20.2 : Bug 2256 fixed - Error on upgrade from version 2.20.0 to 2.20.1
    240240
     241-- 2.20.3 : Bug 2257
     242            Bug 2258 fixed - New feature to backup UAM configuration and personnal settings
     243
    241244*/
    242245?>
  • extensions/UserAdvManager/branches/2.20/include/functions.inc.php

    r10145 r10343  
    24032403
    24042404/**
     2405 * UAM specific database dump (only for MySql !)
     2406 * Creates an SQL dump of UAM specific tables and configuration settings
     2407 *
     2408 * @returns  : Boolean to manage appropriate message display
     2409 *
     2410 */
     2411function uam_dump($download)
     2412{
     2413  global $conf;
     2414 
     2415  // Initial backup folder creation and file initialisation
     2416  if (!is_dir(UAM_PATH.'/include/backup'))
     2417    mkdir(UAM_PATH.'/include/backup');
     2418
     2419  $Backup_File = UAM_PATH.'/include/backup/UAM_dbbackup.sql';
     2420
     2421  $fp = fopen($Backup_File, 'w');
     2422
     2423
     2424  // Saving UAM specific tables
     2425  $ListTables = array(USER_CONFIRM_MAIL_TABLE, USER_LASTVISIT_TABLE);
     2426  $j=0;
     2427 
     2428  while($j < count($ListTables))
     2429  {
     2430    $sql = 'SHOW CREATE TABLE '.$ListTables[$j];
     2431    $res = pwg_query($sql);
     2432
     2433    if ($res)
     2434    {
     2435      $insertions = "-- -------------------------------------------------------\n";
     2436      $insertions .= "-- Create ".$ListTables[$j]." table\n";
     2437      $insertions .= "-- ------------------------------------------------------\n\n";
     2438
     2439      $insertions .= "DROP TABLE IF EXISTS ".$ListTables[$j].";\n\n";
     2440
     2441      $array = mysql_fetch_array($res);
     2442      $array[1] .= ";\n\n";
     2443      $insertions .= $array[1];
     2444
     2445      $req_table = pwg_query('SELECT * FROM '.$ListTables[$j]) or die(mysql_error());
     2446      $nb_fields = mysql_num_fields($req_table);
     2447      while ($line = mysql_fetch_array($req_table))
     2448      {
     2449        $insertions .= 'INSERT INTO '.$ListTables[$j].' VALUES (';
     2450        for ($i=0; $i<$nb_fields; $i++)
     2451        {
     2452          $insertions .= '\'' . mysql_real_escape_string($line[$i]) . '\', ';
     2453        }
     2454        $insertions = substr($insertions, 0, -2);
     2455        $insertions .= ");\n";
     2456      }
     2457      $insertions .= "\n\n";
     2458    }
     2459
     2460    fwrite($fp, $insertions);   
     2461    $j++;
     2462  }
     2463 
     2464  // Saving UAM configuration
     2465  $insertions = "-- -------------------------------------------------------\n";
     2466  $insertions .= "-- Insert UAM configuration in ".CONFIG_TABLE."\n";
     2467  $insertions .= "-- ------------------------------------------------------\n\n";
     2468
     2469  fwrite($fp, $insertions);
     2470
     2471  $pattern = "UserAdvManager%";
     2472  $req_table = pwg_query('SELECT * FROM '.CONFIG_TABLE.' WHERE param LIKE "'.$pattern.'";') or die(mysql_error());
     2473  $nb_fields = mysql_num_fields($req_table);
     2474
     2475  while ($line = mysql_fetch_array($req_table))
     2476  {
     2477    $insertions = 'INSERT INTO '.CONFIG_TABLE.' VALUES (';
     2478    for ($i=0; $i<$nb_fields; $i++)
     2479    {
     2480      $insertions .= '\'' . mysql_real_escape_string($line[$i]) . '\', ';
     2481    }
     2482    $insertions = substr($insertions, 0, -2);
     2483    $insertions .= ");\n";
     2484
     2485    fwrite($fp, $insertions);
     2486  }
     2487
     2488  fclose($fp);
     2489
     2490  // Download generated dump file
     2491  if ($download == 'true')
     2492  {
     2493    if (@filesize($Backup_File))
     2494    {
     2495      $http_headers = array(
     2496        'Content-Length: '.@filesize($Backup_File),
     2497        'Content-Type: text/x-sql',
     2498        'Content-Disposition: attachment; filename="UAM_dbbackup.sql";',
     2499        'Content-Transfer-Encoding: binary',
     2500        );
     2501
     2502      foreach ($http_headers as $header)
     2503      {
     2504        header($header);
     2505      }
     2506
     2507      @readfile($Backup_File);
     2508      exit();
     2509    }
     2510  }
     2511
     2512  return true;
     2513}
     2514
     2515
     2516/**
    24052517 * Useful for debugging - 4 vars can be set
    24062518 * Output result to log.txt file
  • extensions/UserAdvManager/branches/2.20/language/de_DE/help/plugin.lang.php

    r9909 r10343  
    267267Please refer to the <b>Tipps und Beispiele</b> at the bottom of this page for details.';
    268268// --------- End: New or revised $lang ---- from version 2.20.0
     269
     270
     271// --------- Starting below: New or revised $lang ---- from version 2.20.3
     272$lang['UAM_DumpTitle'] = 'Sichern Sie Ihre Konfiguration';
     273$lang['UAM_DumpTitle_d'] = 'Dies ermöglicht Ihnen die gesamte Konfiguration des Plugins in eine Datei zu speichern damit Sie sie wiederherstellen können wenn etwas schief geht (falsche Manipulation oder vor einem Update, zum Beispiel). Standardmäßig wird die Datei in diesem Ordner gespeichert ../plugins/UserAdvManager/include/backup/ und heißt &quot;UAM_dbbackup.sql&quot;.
     274<br><br>
     275<b style=&quot;color: red;&quot;>Achtung: Die Datei wird überschrieben jedem Backup Aktion!</b>
     276<br><br>
     277Es kann manchmal nützlich sein, um die Backup-Datei auf Ihrem Computer abrufen. Zum Beispiel: Um zu einer anderen Datenbank auslagern wiederherzustellen oder zu halten mehrere Dateien speichern. Dazu markieren Sie das Kontrollkästchen, um die Datei herunterzuladen.
     278<br><br>
     279Die Erholung von dieser Schnittstelle wird nicht unterstützt. Verwenden Sie Tools wie phpMyAdmin.';
     280// --------- End: New or revised $lang ---- from version 2.20.3
    269281?>
  • extensions/UserAdvManager/branches/2.20/language/de_DE/plugin.lang.php

    r9909 r10343  
    190190// --------- Starting below: New or revised $lang ---- from version 2.15.1
    191191$lang['UAM_Support_txt'] = 'Die offizielle Unterstützung für dieses Plugin ist nur auf diesem Diskussionsforum von Piwigo:<br>
    192 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Französisch-Forum - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    193 <br>oder<br>
    194192<a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Englisch-Forum - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
    195193Ebenfalls erhältlich, das Projekt Bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
     
    318316$lang['UAM_Stuffs'] = 'PWG Stuffs Modul';
    319317// --------- End: New or revised $lang ---- from version 2.20.0
     318
     319
     320// --------- Starting below: New or revised $lang ---- from version 2.20.3
     321$lang['UAM_DumpTxt'] = 'Sichern Sie Ihre Konfiguration';
     322$lang['UAM_Dump_Download'] = 'Zum Download der Backup-Datei, überprüfen Sie bitte dieses Feld:';
     323$lang['UAM_Save'] = 'Starten der Backup';
     324$lang['UAM_Dump_OK'] = 'Backup-Datei erfolgreich erstellt';
     325$lang['UAM_Dump_NOK'] = 'Fehler: Backup-Datei kann nicht erstellt werden !';
     326// --------- End: New or revised $lang ---- from version 2.20.3
    320327?>
  • extensions/UserAdvManager/branches/2.20/language/en_UK/help/plugin.lang.php

    r9909 r10343  
    267267Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    268268// --------- End: New or revised $lang ---- from version 2.20.0
     269
     270
     271// --------- Starting below: New or revised $lang ---- from version 2.20.3
     272$lang['UAM_DumpTitle'] = 'Backup your configuration';
     273$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
     274<br><br>
     275<b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
     276<br><br>
     277It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
     278<br><br>
     279The recovery from this interface is not supported. Use tools like phpMyAdmin.';
     280// --------- End: New or revised $lang ---- from version 2.20.3
    269281?>
  • extensions/UserAdvManager/branches/2.20/language/en_UK/plugin.lang.php

    r9909 r10343  
    188188// --------- Starting below: New or revised $lang ---- from version 2.15.1
    189189$lang['UAM_Support_txt'] = 'The official support on this plugin is only on these Piwigo forum topic:<br>
    190 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">French forum - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    191 <br>or<br>
    192190<a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">English forum - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
    193191Also available, the project\'s bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
     
    320318$lang['UAM_Stuffs'] = 'PWG Stuffs block';
    321319// --------- End: New or revised $lang ---- from version 2.20.0
     320
     321
     322// --------- Starting below: New or revised $lang ---- from version 2.20.3
     323$lang['UAM_DumpTxt'] = 'Backup your configuration';
     324$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:';
     325$lang['UAM_Save'] = 'Run backup';
     326$lang['UAM_Dump_OK'] = 'Backup file created successfully';
     327$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !';
     328// --------- End: New or revised $lang ---- from version 2.20.3
    322329?>
  • extensions/UserAdvManager/branches/2.20/language/es_ES/help/plugin.lang.php

    r9909 r10343  
    263263Please refer to the <b>Consejos y ejemplos</b> at the bottom of this page for details.';
    264264// --------- End: New or revised $lang ---- from version 2.20.0
     265
     266
     267// --------- Starting below: New or revised $lang ---- from version 2.20.3
     268/*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration';
     269/*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
     270<br><br>
     271<b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
     272<br><br>
     273It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
     274<br><br>
     275The recovery from this interface is not supported. Use tools like phpMyAdmin.';
     276// --------- End: New or revised $lang ---- from version 2.20.3
    265277?>
  • extensions/UserAdvManager/branches/2.20/language/es_ES/plugin.lang.php

    r9909 r10343  
    229229// --------- Starting below: New or revised $lang ---- from version 2.15.1
    230230$lang['UAM_Support_txt'] = 'El apoyo oficial sobre este plugin se encuentra solo en el foro de Piwigo:<br>
    231 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Foro Francés - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    232 <br>o<br>
    233231<a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Foro Inglés - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
    234232También está disponible, el bugtracker del proyecto: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
     
    358356$lang['UAM_Stuffs'] = 'PWG Stuffs módulo';
    359357// --------- End: New or revised $lang ---- from version 2.20.0
     358
     359
     360// --------- Starting below: New or revised $lang ---- from version 2.20.3
     361/*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration';
     362/*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:';
     363/*TODO*/$lang['UAM_Save'] = 'Run backup';
     364/*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully';
     365/*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !';
     366// --------- End: New or revised $lang ---- from version 2.20.3
    360367?>
  • extensions/UserAdvManager/branches/2.20/language/fr_FR/help/plugin.lang.php

    r9909 r10343  
    263263Veuillez vous reporter à la section <b>Astuces et exemples d\'utilisation</b> en bas de cette page pour les détails.';
    264264// --------- End: New or revised $lang ---- from version 2.20.0
     265
     266
     267// --------- Starting below: New or revised $lang ---- from version 2.20.3
     268$lang['UAM_DumpTitle'] = 'Sauvegarde de votre configuration';
     269$lang['UAM_DumpTitle_d'] = 'Ceci vous permet de sauvegarder la configuration complète du plugin dans un fichier afin de pouvoir la restaurer en cas de problème (fausse manipulation ou avant une mise à jour, par exemple). Par défaut, le fichier est stocké dans le dossier ../plugins/UserAdvManager/include/backup/ et se nomme &quot;UAM_dbbackup.sql&quot;.
     270<br><br>
     271<b style=&quot;color: red;&quot;>Attention : Le fichier est écrasé à chaque action de sauvegarde !</b>
     272<br><br>
     273Il peut être parfois utile de récupérer le fichier de sauvegarde sur votre ordinateur. Par exemple : Pour une restauration sur une autre base de données, pour externaliser la sauvegarder ou pour conserver plusieurs fichiers. Pour cela, il suffit de cocher la case correspondante au téléchargement du fichier.
     274<br><br>
     275La restauration à partir de cette interface n\'est pas prise en charge. Utilisez des outils comme PhpMyAdmin.';
     276// --------- End: New or revised $lang ---- from version 2.20.3
    265277?>
  • extensions/UserAdvManager/branches/2.20/language/fr_FR/plugin.lang.php

    r9909 r10343  
    186186
    187187// --------- Starting below: New or revised $lang ---- from version 2.15.1
    188 $lang['UAM_Support_txt'] = 'Le support officiel sur ce plugin se fait exclusivement sur ces fils du forum Piwigo:<br>
     188$lang['UAM_Support_txt'] = 'Le support officiel sur ce plugin se fait exclusivement sur ce fil du forum FR de Piwigo:<br>
    189189<a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forum français - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    190 <br>ou<br>
    191 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forum anglais - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
     190<br><br>
    192191Egalement disponible, le bugtracker du projet: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
    193192// --------- End: New or revised $lang ---- from version 2.15.1
     
    318317$lang['UAM_Stuffs'] = 'Module PWG Stuffs';
    319318// --------- End: New or revised $lang ---- from version 2.20.0
     319
     320
     321// --------- Starting below: New or revised $lang ---- from version 2.20.3
     322$lang['UAM_DumpTxt'] = 'Sauvegarde de votre configuration';
     323$lang['UAM_Dump_Download'] = 'Pour télécharger le fichier de sauvegarde, cochez cette case:';
     324$lang['UAM_Save'] = 'Exécuter la sauvegarde';
     325$lang['UAM_Dump_OK'] = 'Fichier de sauvegarde créé avec succès';
     326$lang['UAM_Dump_NOK'] = 'Erreur : Impossible de créer le fichier de sauvegarde !';
     327// --------- End: New or revised $lang ---- from version 2.20.3
    320328?>
  • extensions/UserAdvManager/branches/2.20/language/it_IT/help/plugin.lang.php

    r9909 r10343  
    254254Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    255255// --------- End: New or revised $lang ---- from version 2.20.0
     256
     257
     258// --------- Starting below: New or revised $lang ---- from version 2.20.3
     259/*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration';
     260/*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
     261<br><br>
     262<b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
     263<br><br>
     264It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
     265<br><br>
     266The recovery from this interface is not supported. Use tools like phpMyAdmin.';
     267// --------- End: New or revised $lang ---- from version 2.20.3
    256268?>
  • extensions/UserAdvManager/branches/2.20/language/it_IT/plugin.lang.php

    r9909 r10343  
    188188// --------- Starting below: New or revised $lang ---- from version 2.15.1
    189189$lang['UAM_Support_txt'] = 'Il supporto ufficiale a questo plugin è solo su questi argomento del forum Piwigo:<br>
    190 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forum francese - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    191 <br>o<br>
    192190<a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forum inglese - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
    193191Disponibile anche, il bugtracker del progetto: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
     
    317315$lang['UAM_Stuffs'] = 'modulo PWG Stuffs';
    318316// --------- End: New or revised $lang ---- from version 2.20.0
     317
     318
     319// --------- Starting below: New or revised $lang ---- from version 2.20.3
     320/*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration';
     321/*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:';
     322/*TODO*/$lang['UAM_Save'] = 'Run backup';
     323/*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully';
     324/*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !';
     325// --------- End: New or revised $lang ---- from version 2.20.3
    319326?>
  • extensions/UserAdvManager/branches/2.20/language/lv_LV/help/plugin.lang.php

    r9909 r10343  
    289289Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    290290// --------- End: New or revised $lang ---- from version 2.20.0
     291
     292
     293// --------- Starting below: New or revised $lang ---- from version 2.20.3
     294/*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration';
     295/*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
     296<br><br>
     297<b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
     298<br><br>
     299It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
     300<br><br>
     301The recovery from this interface is not supported. Use tools like phpMyAdmin.';
     302// --------- End: New or revised $lang ---- from version 2.20.3
    291303?>
  • extensions/UserAdvManager/branches/2.20/language/lv_LV/plugin.lang.php

    r9909 r10343  
    226226// --------- Starting below: New or revised $lang ---- from version 2.15.1
    227227$lang['UAM_Support_txt'] = 'Oficiāls šī spraudņa atbalsts ir pieejams tikai Piwigo forumā:<br>
    228 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forums fraņču valodā - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>
    229 <br>or<br>
    230228<a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forums angļu valodā - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br>
    231229Vēl pieejasms projekta bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>';
     
    355353/*TODO*/$lang['UAM_Stuffs'] = 'PWG Stuffs block';
    356354// --------- End: New or revised $lang ---- from version 2.20.0
     355
     356
     357// --------- Starting below: New or revised $lang ---- from version 2.20.3
     358/*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration';
     359/*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:';
     360/*TODO*/$lang['UAM_Save'] = 'Run backup';
     361/*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully';
     362/*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !';
     363// --------- End: New or revised $lang ---- from version 2.20.3
    357364?>
  • extensions/UserAdvManager/branches/2.20/main.inc.php

    r10169 r10343  
    22/*
    33Plugin Name: UserAdvManager
    4 Version: 2.20.2
     4Version: 2.20.3
    55Description: Renforcer la gestion des utilisateurs - Enforce users management
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=216
Note: See TracChangeset for help on using the changeset viewer.