-
Notifications
You must be signed in to change notification settings - Fork 10
Comments plugin
sjarvela edited this page Mar 11, 2015
·
3 revisions
Comments plugin is built-in plugin that provides possibility to comment any file or folder.
Configure plugin by adding following into configuration.php (or merge into existing plugins array):
$CONFIGURATION = array(
...,
"plugins" => array(
"Comment" => array()
)
);
Add following into client settings:
mollify.App.init({
...
}, [
new mollify.plugin.CommentPlugin()
]
});
NOTE After configuration is done, comments plugin requires installation via Mollify update util.
Comments plugin provides comments count column with column id comment-count. For example:
mollify.App.init({
...
"list-view-columns": {
"name": {},
"comment-count": {},
"type": {},
"size": {}
}, [
new mollify.plugin.CommentPlugin()
]
});
For more info, see file list column customization.