Files
adminer/plugins/version-noverify.php

23 lines
808 B
PHP
Raw Normal View History

2011-02-17 09:23:13 +01:00
<?php
/** Disable version checker
2015-09-08 09:23:25 -07:00
* @link https://www.adminer.org/plugins/#use
2017-02-27 13:43:33 +01:00
* @author Jakub Vrana, https://www.vrana.cz/
2018-01-14 11:03:54 +01:00
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
2011-02-17 09:23:13 +01:00
*/
2025-04-07 16:32:57 +02:00
class AdminerVersionNoverify extends Adminer\Plugin {
2025-02-21 13:53:18 +01:00
function head($dark = null) {
echo Adminer\script("verifyVersion = () => { };");
2011-02-17 09:23:13 +01:00
}
protected $translations = array(
'cs' => array('' => 'Zakáže kontrolu nových verzí'),
'de' => array('' => 'Deaktivieren Sie die Versionsprüfung'),
'pl' => array('' => 'Wyłącz sprawdzanie wersji'),
'ro' => array('' => 'Dezactivați verificatorul de versiuni'),
'ja' => array('' => 'バージョンチェックを無効化'),
);
2011-02-17 09:23:13 +01:00
}