Skip to content
This repository has been archived by the owner on Jul 13, 2019. It is now read-only.

Schlaefer/saito-flattr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flattr

What

Plugin for Saito-Forum. Adds Flattr button to postings and user profile page.

Install

Either clone/copy the files in this directory into app/Plugin/Flattr or using composer:

{
    "require": {
        "schlaefer/saito-flattr": "*"
    }
}

Add new database-fields:

ALTER TABLE `users` ADD `flattr_uid` VARCHAR(24)  NULL  DEFAULT NULL;
ALTER TABLE `users` ADD `flattr_allow_user` TINYINT(1)  NULL  DEFAULT NULL  AFTER `flattr_uid`;
ALTER TABLE `users` ADD `flattr_allow_posting` TINYINT(1)  NULL  DEFAULT NULL  AFTER `flattr_allow_user`;

ALTER TABLE `entries` ADD `flattr` TINYINT(1)  NULL  DEFAULT NULL;

Empty the cache in the admin panel to register the DB-changes.

Add to saito_config.php:

CakePlugin::load('Flattr', ['bootstrap' => true]);

Uninstall

Remove database-fields:

ALTER TABLE `users` DROP `flattr_allow_posting`;
ALTER TABLE `users` DROP `flattr_allow_user`;
ALTER TABLE `users` DROP `flattr_uid`;

ALTER TABLE `entries` DROP `flattr`;

Empty the cache in the admin panel to register the DB-changes.

About

Flattr badge for Saito forum

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages