mirror of
https://github.com/vrana/adminer.git
synced 2026-01-13 11:03:10 +01:00
32 lines
941 B
PHP
32 lines
941 B
PHP
<?php
|
|
namespace Adminer;
|
|
|
|
// the overridable methods don't use return type declarations so that plugins can be compatible with PHP 5
|
|
abstract class Plugin {
|
|
/** @var array<literal-string, string|list<string>>[] */ protected $translations = array(); // key is language code
|
|
|
|
/** Get plain text plugin description; empty string means to use the first line of class doc-comment
|
|
* @return string
|
|
*/
|
|
function description() {
|
|
return $this->lang('');
|
|
}
|
|
|
|
/** Get URL of plugin screenshot
|
|
* @return string
|
|
*/
|
|
function screenshot() {
|
|
return "";
|
|
}
|
|
|
|
/** Translate a string from $this->translations; Adminer\lang() doesn't work for single language versions
|
|
* @param literal-string $idf
|
|
* @param float|string $number
|
|
*/
|
|
protected function lang(string $idf, $number = null): string {
|
|
$args = func_get_args();
|
|
$args[0] = idx($this->translations[LANG], $idf) ?: $idf;
|
|
return call_user_func_array('Adminer\lang_format', $args);
|
|
}
|
|
}
|