mirror of
https://git.code.sf.net/p/seeddms/code
synced 2026-02-21 01:58:35 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
82734ae153
|
|
@ -90,6 +90,14 @@ class Utilities { /* {{{ */
|
|||
return base64_encode($bytes);
|
||||
} /* }}} */
|
||||
|
||||
static function geoip($addr) { /* {{{ */
|
||||
if($geoip = @file_get_contents('https://json.geoiplookup.io/'.$addr)) {
|
||||
$data = json_decode($geoip, true);
|
||||
if($data && $data['success'])
|
||||
return $data;
|
||||
}
|
||||
return false;
|
||||
} /* }}} */
|
||||
} /* }}} */
|
||||
|
||||
class_alias('Seeddms\Seeddms\Utilities', 'SeedDMS_Utils');
|
||||
|
|
|
|||
|
|
@ -830,6 +830,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'معلومات فهرس النص الكامل',
|
||||
'fulltextsearch_disabled' => 'توقف البحث الكامل للنص',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'معرف تعريف المجموعات',
|
||||
'global_attributedefinitions' => 'سمات',
|
||||
'global_default_keywords' => 'كلمات بحثية عامة',
|
||||
|
|
|
|||
|
|
@ -724,6 +724,13 @@ $text = array(
|
|||
'fulltext_info' => 'Информация за пълнотекстов индексе',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'атрибути',
|
||||
'global_default_keywords' => 'Глобални ключови думи',
|
||||
|
|
|
|||
|
|
@ -729,6 +729,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Informació de full-text',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atributs',
|
||||
'global_default_keywords' => 'Mots clau globals',
|
||||
|
|
|
|||
|
|
@ -861,6 +861,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Fulltext index info',
|
||||
'fulltextsearch_disabled' => 'fulltextové vyhledávání zakázáno',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Skupiny atributů',
|
||||
'global_attributedefinitions' => 'Atributy',
|
||||
'global_default_keywords' => 'Globální klíčová slova',
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (3584), dgrutsch (22)
|
||||
// Translators: Admin (3591), dgrutsch (22)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-Faktor Authentifizierung',
|
||||
|
|
@ -1074,6 +1074,13 @@ URL: [url]</p>',
|
|||
'fulltext_info' => 'Volltext-Index Info',
|
||||
'fulltextsearch_disabled' => 'Volltext-Index ist ausgeschaltet',
|
||||
'func_proc_open_missing' => 'proc_open wird benötigt, um Dokumente im Volltext zu indizieren. Ohne diese Funktion werden lediglich die Metadaten indiziert.',
|
||||
'geo_info' => 'Geo-Information',
|
||||
'geo_info_city' => 'Stadt',
|
||||
'geo_info_country_code' => 'Länderkennung',
|
||||
'geo_info_ip' => 'IP-Adresse',
|
||||
'geo_info_isp' => 'ISP',
|
||||
'geo_info_org' => 'Organisation',
|
||||
'geo_info_timezone_name' => 'Zeitzone',
|
||||
'global_attributedefinitiongroups' => 'Attributgruppen',
|
||||
'global_attributedefinitions' => 'Attribute',
|
||||
'global_default_keywords' => 'Globale Stichwortlisten',
|
||||
|
|
|
|||
|
|
@ -724,6 +724,13 @@ $text = array(
|
|||
'fulltext_info' => 'Πληροφορίες Κειμένου',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Ιδιότητες',
|
||||
'global_default_keywords' => 'Λέξεις Κλειδιά',
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (2651), archonwang (3), dgrutsch (9), netixw (14)
|
||||
// Translators: Admin (2658), archonwang (3), dgrutsch (9), netixw (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-factor authentication',
|
||||
|
|
@ -1074,6 +1074,13 @@ URL: [url]</p>',
|
|||
'fulltext_info' => 'Fulltext index info',
|
||||
'fulltextsearch_disabled' => 'Fulltext index is disabled',
|
||||
'func_proc_open_missing' => 'proc_open is required for indexing the content of documents. Without this function only the metadata will be indexed.',
|
||||
'geo_info' => 'Geo information',
|
||||
'geo_info_city' => 'City',
|
||||
'geo_info_country_code' => 'Country code',
|
||||
'geo_info_ip' => 'IP address',
|
||||
'geo_info_isp' => 'ISP',
|
||||
'geo_info_org' => 'Organisation',
|
||||
'geo_info_timezone_name' => 'Timezone',
|
||||
'global_attributedefinitiongroups' => 'Attribute groups',
|
||||
'global_attributedefinitions' => 'Attributes',
|
||||
'global_default_keywords' => 'Global keywords',
|
||||
|
|
|
|||
|
|
@ -845,6 +845,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Información de índice de texto completo',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Definición de atributos',
|
||||
'global_default_keywords' => 'Palabras clave globales',
|
||||
|
|
|
|||
|
|
@ -1029,6 +1029,13 @@ URL : [url]</p>',
|
|||
'fulltext_info' => 'Information sur l\'index plein texte',
|
||||
'fulltextsearch_disabled' => 'La recherche plein texte est désactivée.',
|
||||
'func_proc_open_missing' => 'proc_open est nécessaire pour indexer le contenu des documents. Sans cette fonction, seules les métadonnées seront indexées.',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Groupes d’attributs',
|
||||
'global_attributedefinitions' => 'Définitions d\'attributs',
|
||||
'global_default_keywords' => 'Mots-clés globaux',
|
||||
|
|
|
|||
|
|
@ -842,6 +842,13 @@ Internet poveznica: [url]',
|
|||
'fulltext_info' => 'Informacije cijelog teksta',
|
||||
'fulltextsearch_disabled' => 'onemogućeno pretraživanje punog teksta',
|
||||
'func_proc_open_missing' => 'nedostaje func proc open',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'globalne grupe za definiranje atributa',
|
||||
'global_attributedefinitions' => 'Atributi',
|
||||
'global_default_keywords' => 'Globalne ključne riječi',
|
||||
|
|
|
|||
|
|
@ -836,6 +836,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Teljes szöveg index információ',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Jellemzők',
|
||||
'global_default_keywords' => 'Globális kulcsszavak',
|
||||
|
|
|
|||
|
|
@ -920,6 +920,13 @@ URL: [url]</p>',
|
|||
'fulltext_info' => '',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => 'proc_open diperlukan untuk mengindeks konten dokumen. Tanpa fungsi ini hanya metadata yang akan diindeks.',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atribut',
|
||||
'global_default_keywords' => 'Kata kunci global',
|
||||
|
|
|
|||
|
|
@ -843,6 +843,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Info indice Fulltext',
|
||||
'fulltextsearch_disabled' => 'Ricerca Fulltext disabilitata',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Attributo gruppi',
|
||||
'global_attributedefinitions' => 'Definizione attributi',
|
||||
'global_default_keywords' => 'Parole-chiave globali',
|
||||
|
|
|
|||
|
|
@ -843,6 +843,13 @@ URL: [url]',
|
|||
'fulltext_info' => '전체 텍스트 색인 정보',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => '속성',
|
||||
'global_default_keywords' => '글로벌 키워드',
|
||||
|
|
|
|||
|
|
@ -840,6 +840,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'ສາລະບານຂໍ້ຄວາມແບບເຕັມຮູບແບບ',
|
||||
'fulltextsearch_disabled' => 'ສາລະບານຂໍ້ຄວາມໄດ້ຖືກປິດໄຊ້ງານ',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'ກຸ່ມແອັດທີບິວ',
|
||||
'global_attributedefinitions' => 'ແອັດທີບິວ',
|
||||
'global_default_keywords' => 'ຄຳຫຼັກທົ່ວໂລກ',
|
||||
|
|
|
|||
|
|
@ -861,6 +861,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Fulltekst indeksinfo',
|
||||
'fulltextsearch_disabled' => 'Indeksering for fulltekstsøkning er deaktivert',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Egenskapsgrupper',
|
||||
'global_attributedefinitions' => 'Egenskaper',
|
||||
'global_default_keywords' => 'Globale søkeord',
|
||||
|
|
|
|||
|
|
@ -854,6 +854,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Inhoud van de fulltext index',
|
||||
'fulltextsearch_disabled' => 'Fulltext search uitgeschakeld',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Attribuut-definities in groepen',
|
||||
'global_attributedefinitions' => 'attribuutdefinities',
|
||||
'global_default_keywords' => 'Algemene sleutelwoorden',
|
||||
|
|
|
|||
|
|
@ -1071,6 +1071,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Informacje o indeksie pełnotekstowym',
|
||||
'fulltextsearch_disabled' => 'Indeks pełnotekstowy jest wyłączony',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Grupy atrybutów',
|
||||
'global_attributedefinitions' => 'Definicje atrybutów',
|
||||
'global_default_keywords' => 'Globalne słowa kluczowe',
|
||||
|
|
|
|||
|
|
@ -861,6 +861,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Informações índice Texto completo',
|
||||
'fulltextsearch_disabled' => 'O índice de texto completo está desativado',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Grupos de atributos',
|
||||
'global_attributedefinitions' => 'Atributos',
|
||||
'global_default_keywords' => 'palavras-chave globais',
|
||||
|
|
|
|||
|
|
@ -842,6 +842,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Info indexarea intregului text',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atribute',
|
||||
'global_default_keywords' => 'Cuvinte cheie globale',
|
||||
|
|
|
|||
|
|
@ -842,6 +842,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Информация о полнотекстовом индексе',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Глобальные группы атрибутов',
|
||||
'global_attributedefinitions' => 'Атрибуты',
|
||||
'global_default_keywords' => 'Глобальные метки',
|
||||
|
|
|
|||
|
|
@ -861,6 +861,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Informácie o fulltext indexe',
|
||||
'fulltextsearch_disabled' => 'Fulltext index je zakázaný',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Skupiny atribútov',
|
||||
'global_attributedefinitions' => 'Atribúty',
|
||||
'global_default_keywords' => 'Globálne kľúčové slová',
|
||||
|
|
|
|||
|
|
@ -848,6 +848,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Fulltext-indexinfo',
|
||||
'fulltextsearch_disabled' => 'Indexering för fulltextsökning är inaktiverad',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => 'Attributgrupper',
|
||||
'global_attributedefinitions' => 'Attributdefinitioner',
|
||||
'global_default_keywords' => 'Globala nyckelord',
|
||||
|
|
|
|||
|
|
@ -834,6 +834,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Tam metin indeks bilgi',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Nitelikler',
|
||||
'global_default_keywords' => 'Global anahtar kelimeler',
|
||||
|
|
|
|||
|
|
@ -841,6 +841,13 @@ URL: [url]',
|
|||
'fulltext_info' => 'Інформація про повнотекстовий індекс',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Атрибути',
|
||||
'global_default_keywords' => 'Глобальні ключові слова',
|
||||
|
|
|
|||
|
|
@ -844,6 +844,13 @@ URL: [url]',
|
|||
'fulltext_info' => '全文索引信息',
|
||||
'fulltextsearch_disabled' => '全文索引已禁用',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '属性组',
|
||||
'global_attributedefinitions' => '属性',
|
||||
'global_default_keywords' => '全局关键字',
|
||||
|
|
|
|||
|
|
@ -861,6 +861,13 @@ URL: [url]',
|
|||
'fulltext_info' => '全文索引資訊',
|
||||
'fulltextsearch_disabled' => '全文索引已禁用',
|
||||
'func_proc_open_missing' => '',
|
||||
'geo_info' => '',
|
||||
'geo_info_city' => '',
|
||||
'geo_info_country_code' => '',
|
||||
'geo_info_ip' => '',
|
||||
'geo_info_isp' => '',
|
||||
'geo_info_org' => '',
|
||||
'geo_info_timezone_name' => '',
|
||||
'global_attributedefinitiongroups' => '屬性組',
|
||||
'global_attributedefinitions' => '屬性',
|
||||
'global_default_keywords' => '全域關鍵字',
|
||||
|
|
|
|||
|
|
@ -82,6 +82,18 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
|
|||
echo "<tr><td>".getMLText('browser_info_os')."</td><td>".$result->os->toString()."</td></tr>\n";
|
||||
echo "</tbody>\n</table>\n";
|
||||
|
||||
$result = \Seeddms\Seeddms\Utilities::geoip('194.230.161.18');
|
||||
$this->contentHeading(getMLText("geo_info"));
|
||||
echo "<table class=\"table table-condensed table-sm\">\n";
|
||||
// echo "<thead>\n<tr>\n";
|
||||
// echo "<th>".getMLText("name")."</th><th></th>\n";
|
||||
// echo "</tr>\n</thead>\n";
|
||||
echo "<tbody>\n";
|
||||
foreach (['ip', 'isp', 'org', 'city', 'country_code', 'timezone_name'] as $i) {
|
||||
echo "<tr><td>".getMLText('geo_info_'.$i)."</td><td>".$result[$i]."</td></tr>\n";
|
||||
}
|
||||
echo "</tbody>\n</table>\n";
|
||||
|
||||
if($user->isAdmin()) {
|
||||
$this->contentHeading(getMLText("extension_info"));
|
||||
echo "<table class=\"table table-condensed table-sm\">\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user