From: <var...@us...> - 2021-11-29 13:15:17
|
Revision: 10701 http://sourceforge.net/p/phpwiki/code/10701 Author: vargenau Date: 2021-11-29 13:15:14 +0000 (Mon, 29 Nov 2021) Log Message: ----------- WhoIsOnline plugin: remove unused arguments pagename, allow_detail, dispose_admin Modified Paths: -------------- trunk/lib/plugin/WhoIsOnline.php trunk/locale/de/pgsrc/WerIstOnline trunk/locale/fr/pgsrc/QuiEstEnLigne trunk/pgsrc/Help%2FWhoIsOnlinePlugin trunk/pgsrc/WhoIsOnline Modified: trunk/lib/plugin/WhoIsOnline.php =================================================================== --- trunk/lib/plugin/WhoIsOnline.php 2021-11-29 11:44:02 UTC (rev 10700) +++ trunk/lib/plugin/WhoIsOnline.php 2021-11-29 13:15:14 UTC (rev 10701) @@ -46,9 +46,6 @@ // two modes: summary and detail, page links to the page with the other mode return array( 'mode' => 'summary', // or "detail" - 'pagename' => '[pagename]', // refer to the page with the other mode - 'allow_detail' => false, // if false, page is ignored - 'dispose_admin' => false, ); } @@ -191,8 +188,6 @@ } $num_users = $num_guests + $num_registered; - //TODO: get and sets max stats in global_data - //$page = $dbi->getPage($request->getArg('pagename')); $stats = array(); $stats['max_online_num'] = 0; if ($stats = $dbi->get('stats')) { Modified: trunk/locale/de/pgsrc/WerIstOnline =================================================================== --- trunk/locale/de/pgsrc/WerIstOnline 2021-11-29 11:44:02 UTC (rev 10700) +++ trunk/locale/de/pgsrc/WerIstOnline 2021-11-29 13:15:14 UTC (rev 10701) @@ -1,4 +1,4 @@ -Date: Wed, 10 Apr 2019 16:39:09 +0000 +Date: Mon, 29 Nov 2021 14:11:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=WerIstOnline; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<WhoIsOnline allow_detail=1>> +<<WhoIsOnline>> ---- [[KategorieAktionSeite]] Modified: trunk/locale/fr/pgsrc/QuiEstEnLigne =================================================================== --- trunk/locale/fr/pgsrc/QuiEstEnLigne 2021-11-29 11:44:02 UTC (rev 10700) +++ trunk/locale/fr/pgsrc/QuiEstEnLigne 2021-11-29 13:15:14 UTC (rev 10701) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:17 +0000 +Date: Mon, 29 Nov 2021 14:11:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=QuiEstEnLigne; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<WhoIsOnline allow_detail=1>> +<<WhoIsOnline>> ---- [[CatégoriePageDAction]] Modified: trunk/pgsrc/Help%2FWhoIsOnlinePlugin =================================================================== --- trunk/pgsrc/Help%2FWhoIsOnlinePlugin 2021-11-29 11:44:02 UTC (rev 10700) +++ trunk/pgsrc/Help%2FWhoIsOnlinePlugin 2021-11-29 13:15:14 UTC (rev 10701) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Mon, 29 Nov 2021 14:11:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FWhoIsOnlinePlugin; @@ -24,18 +24,6 @@ | **mode** | summary or detail | summary -|- -| **pagename** -| Refer to the page with the other mode -| [pagename] -|- -| **allow_detail** -| If false, page is ignored -| false -|- -| **mode** -| -| false |} == Example == Modified: trunk/pgsrc/WhoIsOnline =================================================================== --- trunk/pgsrc/WhoIsOnline 2021-11-29 11:44:02 UTC (rev 10700) +++ trunk/pgsrc/WhoIsOnline 2021-11-29 13:15:14 UTC (rev 10701) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Mon, 29 Nov 2021 14:11:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=WhoIsOnline; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<WhoIsOnline allow_detail=1>> +<<WhoIsOnline>> ---- [[CategoryActionPage]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |