Skip to content

Commit

Permalink
* Initial commit. Verified to work with 2015-08-10a "Detritus".
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Wilmes <mwilmes@wilminator.com>
  • Loading branch information
Michael Wilmes committed Sep 4, 2015
1 parent 8eea9a3 commit c76694f
Show file tree
Hide file tree
Showing 7 changed files with 550 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README
@@ -0,0 +1,28 @@
attribute Plugin for DokuWiki

Arbitrary attribute definition and storage for user associated data.

All documentation for this plugin can be found at
https://www.dokuwiki.org/plugin:attribute

If you install this plugin manually, make sure it is installed in
lib/plugins/attribute/ - if the folder is called different it
will not work!

Please refer to http://www.dokuwiki.org/plugins for additional info
on how to install plugins in DokuWiki.

----
A huge thanks to János Fekete - his memcache plugin provided me a starting
point to write this plugin.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

See the COPYING file in your DokuWiki folder for details
4 changes: 4 additions & 0 deletions README.md
@@ -0,0 +1,4 @@
# attribute
Arbitrary attribute definition and storage for user associated data.

See detail on: (I hope) https://www.dokuwiki.org/plugin:attribute
9 changes: 9 additions & 0 deletions conf/default.php
@@ -0,0 +1,9 @@
<?php

/**
* Default settings for the attribute plugin
* @author Mike Wilmes <mwilmes@avc.edu>
*/

$conf['store'] = '';
$conf['no_compress'] = 0;
10 changes: 10 additions & 0 deletions conf/metadata.php
@@ -0,0 +1,10 @@
<?php

/**
* Options for the attribute plugin
*
* @author Mike Wilmes <mwilmes@avc.edu>
*/

$meta['store'] = array('string');
$meta['no_compress'] = array('onoff');

0 comments on commit c76694f

Please sign in to comment.