Online Users Block

Online Users Block

by Andrew Wojtowicz -
Number of replies: 2
Is there a way for me to add the Online Users block to the main page, but only alow the admin's to see it?
Average of ratings: -
In reply to Andrew Wojtowicz

Re: Online Users Block

by John Papaioannou -
Edit the file blocks/online_users/block_online_users.php.

Find:
        $this->content = New object; 
        $this->content->text = ''; 
        $this->content->footer = '';
< />and immediately afterwards add:
        if(empty($USER) || !isadmin()) {
            return $this->content;
        }
That will ensure that only admins get to see the block, no matter where it is displayed.

Jon