
內容簡介
這是一個記錄使用者登入的簡單日誌外掛,可追蹤使用者名稱、登入日期、IP 地址和瀏覽器使用者代理。
DEMO 影片
功能包括:
能夠過濾使用者名稱、成功/失敗的登入、月份和年份;
匯出 CSV 檔案;
日誌自動截斷;
選擇紀錄失敗的登入嘗試。
翻譯:
Persian [fa_IR] by MohammadHadi Nasiri
German [de_DE] by Philipp Moore
Russian [ru_RU]
Ukrainian [ua_UA]
Chinese [zh_CN] by Mihuwa
French [fr_FR] by Mehdi Hamida
作者:Max Chirkov
作者網址:http://simplerealtytheme.com/
版權:根據 GNU GENERAL PUBLIC LICENSE 發佈
過濾器
** 表格內的日誌輸出 **
sll-output-data – 過濾表格行陣列,其中陣列鍵是列名,而值是輸出。
例如,我們可以使用此過濾器將 IP 地址連結到地理位置服務:
<?php
add_filter( 'sll-output-data', 'link_location_by_ip' );
function link_location_by_ip($item){
//$item 是一個具有值的列、名稱的單一行
$item['ip'] = sprintf('<a target="_blank" href="http://infosniper.net/index.php?ip_address=%1$s&map_source=3&two_maps=1&overview_map=1&lang=1&map_type=1&zoom_level=11">%1$s</a>', $item['ip']);
return $item;
}
?>
翻譯
如果您想要貢獻,POT 檔案可在 languages 資料夾中取得。翻譯檔案名稱約定為 sll-{locale}.mo,其中 {locale} 是您語言的區域設定。例如,俄文檔案名稱將為 sll-ru_RU.po。
外掛標籤
開發者團隊
原文外掛簡介
Simple log of user logins. Tracks user name, time of login, IP address and browser user agent.
Features include:
ability to filter by user name, successful/failed logins, month and year;
export into CSV file;
log auto-truncation;
option to record failed login attempts.
Translations:
Persian [fa_IR] by MohammadHadi Nasiri
German [de_DE] by Philipp Moore
Russian [ru_RU]
Ukrainian [ua_UA]
Chinese [zh_CN] by Mihuwa
French [fr_FR] by Mehdi Hamida
Author: Max Chirkov
Author: Joris Le Blansch
Translation
If you would like to contribute, the POT file is available in the languages folder. Translation file name convention is sll-{locale}.mo, where {locale} is the locale of your language. Fore example, Russian file name would be sll-ru_RU.po.
