schlaefer / saito-flattr
Flattr for Saito forum
Installs: 200
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
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.