schlaefer/saito-flattr

This package is abandoned and no longer maintained. No replacement package was suggested.

Flattr for Saito forum

1.1.1 2015-01-04 07:06 UTC

This package is auto-updated.

Last update: 2022-02-01 12:40:59 UTC


README

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.