With this component you can make a menu item in the frontend of Joomla1.5 for Administrators to Checkin items. Just like Global Checkin in the administrator backend
1. Create a menu item for 'Checkin items'
2. Make it only for users "special"
FAQ:
- I want to use checkin frontend for “Publisher” users. Is it possible?
change the access level: change libraries/joomla/user/authorization.php (line 90)
$this->addACL( 'com_checkin', 'manage', 'users', 'administrator' );
make it:
$this->addACL( 'com_checkin', 'manage', 'users', 'publisher' );
Have FUN!!!

