GitXplorerGitXplorer
i

Yourls-Separate-Users

public
15 stars
13 forks
4 issues

Commits

List of commits on branch master.
Unverified
c05feae0784d43366d49347d45979776c07bfa75

Update and rename README to README.md

iianbarber committed 11 years ago
Unverified
341f3199b412f376e2cd13bbc6a81b42dd48e679

Update README

iianbarber committed 11 years ago
Unverified
24b0de31063879670b3f25b9d37a7a728e7676ba

Merge pull request #5 from alexalouit/patch-3

iianbarber committed 11 years ago
Unverified
1840b1cf89cb3c29367948d6c80ca2e02729297a

Update README

aalexalouit committed 11 years ago
Unverified
09008a6a7af64b1b8c7afc9a2a8563b052eb9509

Merge pull request #4 from alexalouit/patch-2

iianbarber committed 11 years ago
Unverified
fd2b21490945f5827ad7a002b7f1e738006848c2

Update plugin.php

aalexalouit committed 11 years ago

README

The README file for this repository.

A simple YouRLS plug to hide different users information from each other.

To install, just copy the plugins/separate-users folder to your plugins folder (usually user/plugins). Once activated, any new links created will only be visible in the admin to the user that created them, and the + stats page will also be restricted to only the user that created it. Users cannot create shortcodes the same as one already created by another user.

If an account named 'admin' is created, it will be able to view all links. The specific name can be changed by defining SEPARATE_USERS_ADMIN_USER in the config, e.g.

define ('SEPARATE_USERS_ADMIN_USER', 'tony');

to give the account 'tony' full access.

If you want to define multiple users, here are the steps to follow.

define('SEPARATE_USERS_ADMIN_USER', serialize(array('tony', 'jack')));

to give the accounts 'tony' and 'jack' full access.

Please note: currently this plugin is designed mainly to clean up the admin interface for different users, and doesn't guarantee there's no way for one user to influence or access the links of another!