Plugins for the Coppermine Photo Gallery are add-ons that use the plugin interface of Coppermine.
Read up the documentation that comes with Coppermine to find out more, e.g. how to install a plugin.

Coppermine version: cpg1.4.x
Plugin name: Users Online Today
Plugin version: 1.0
Plugin author: Borzoo Mossavari (Sami)
Plugin announcement thread: http://forum.coppermine-gallery.net/index.php/topic,35233.0.html


Users Online Today (Like SMF add-on package) ver 1.0
   Main mod: http://forum.coppermine-gallery.net/index.php?topic=17308.0
   Main idea: probinson77

   Special thanks to razorbiker , who ordered Wink this plugin

Install:
- unzip package to plugins folder and use plugin manager to install it
- after installation add onlinetoday to :
    config => Album list view => The content of the main page

config:
- if you want to show this stat to admin only , open up plugins/online_oday/codebase.php and replace (around line 63)
this
Code:

if($matches[1] != 'onlinetoday') {

with this
Code:

if($matches[1] != 'onlinetoday' || !GALLERY_ADMIN_MODE) {


- if you want to show this stat to Registered user only , open up plugins/online_oday/codebase.php and replace (around line 63)
this
Code:

if($matches[1] != 'onlinetoday') {

with this
Code:

if($matches[1] != 'onlinetoday' || !USER_ID) {


There isn't any configuration page for this plugin , yet !
