Admidio/admidio

View on GitHub
adm_plugins/who-is-online/config_sample.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 ***********************************************************************************************
 * Configuration file for Admidio plugin Sidebar-Online
 *
 * Rename this file to config.php if you want to change some of the preferences below. The plugin
 * will only read the parameters from config.php and not the example file.
 *
 * @copyright The Admidio Team
 * @see https://www.admidio.org/
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2.0 only
 ***********************************************************************************************
 */

// Time in minutes in which the users are still active (Default = 10)
$plg_time_online = 10;

// Should visitors (users who are not logged in) also be displayed
// 0 - only logged in members will be shown
// 1 - (Default) Number of visitors is listed
$plg_show_visitors = 1;

// Should logged in members be displayed to visitors (users who are not logged in)
// 0 - logged in members are not displayed
// 1 - logged in members are displayed
// 2 - (Default) only number of logged in members is displayed
$plg_show_members = 2;

// The own login should be displayed
// 0 - the own login (also logged out) will not be displayed
// 1 - (Default) the own login (also logged out) will be displayed
$plg_show_self = 1;

// Display of user names with each other or side by side
// 0 - (Default) List user names (1 name per line)
// 1 - List user names side by side
$plg_show_users_side_by_side = 0;