2012-11-22 11:20:03 -05:00
< ? php
/*
* Features management
*/
function feature_enabled ( $uid , $feature ) {
//return true;
$x = get_pconfig ( $uid , 'feature' , $feature );
$arr = array ( 'uid' => $uid , 'feature' => $feature , 'enabled' => $x );
call_hooks ( 'feature_enabled' , $arr );
return ( $arr [ 'enabled' ]);
}
function get_features () {
$arr = array (
// General
'general' => array (
2012-11-28 22:25:09 -05:00
t ( 'General Features' ),
2012-11-22 11:20:03 -05:00
//array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')),
array ( 'multi_profiles' , t ( 'Multiple Profiles' ), t ( 'Ability to create multiple profiles' )),
2015-09-29 18:19:54 -04:00
array ( 'photo_location' , t ( 'Photo Location' ), t ( 'Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.' ), false ),
2012-11-22 11:20:03 -05:00
),
// Post composition
'composition' => array (
2012-11-28 22:25:09 -05:00
t ( 'Post Composition Features' ),
2012-11-22 11:20:03 -05:00
array ( 'richtext' , t ( 'Richtext Editor' ), t ( 'Enable richtext editor' )),
2015-06-03 14:57:30 -04:00
array ( 'preview' , t ( 'Post Preview' ), t ( 'Allow previewing posts and comments before publishing them' )),
2014-01-03 08:40:43 -05:00
array ( 'aclautomention' , t ( 'Auto-mention Forums' ), t ( 'Add/remove mention when a fourm page is selected/deselected in ACL window.' )),
2012-11-22 11:20:03 -05:00
),
// Network sidebar widgets
'widgets' => array (
2012-11-28 22:25:09 -05:00
t ( 'Network Sidebar Widgets' ),
2012-11-22 11:20:03 -05:00
array ( 'archives' , t ( 'Search by Date' ), t ( 'Ability to select posts by date ranges' )),
array ( 'groups' , t ( 'Group Filter' ), t ( 'Enable widget to display Network posts only from selected group' )),
array ( 'networks' , t ( 'Network Filter' ), t ( 'Enable widget to display Network posts only from selected network' )),
array ( 'savedsearch' , t ( 'Saved Searches' ), t ( 'Save search terms for re-use' )),
),
// Network tabs
'net_tabs' => array (
2012-11-28 22:25:09 -05:00
t ( 'Network Tabs' ),
2012-11-22 11:20:03 -05:00
array ( 'personal_tab' , t ( 'Network Personal Tab' ), t ( 'Enable tab to display only Network posts that you\'ve interacted on' )),
array ( 'new_tab' , t ( 'Network New Tab' ), t ( 'Enable tab to display only new Network posts (from the last 12 hours)' )),
array ( 'link_tab' , t ( 'Network Shared Links Tab' ), t ( 'Enable tab to display only Network posts with links in them' )),
),
// Item tools
'tools' => array (
2012-11-28 22:25:09 -05:00
t ( 'Post/Comment Tools' ),
2012-11-22 11:20:03 -05:00
array ( 'multi_delete' , t ( 'Multiple Deletion' ), t ( 'Select and delete multiple posts/comments at once' )),
array ( 'edit_posts' , t ( 'Edit Sent Posts' ), t ( 'Edit and correct posts and comments after sending' )),
array ( 'commtag' , t ( 'Tagging' ), t ( 'Ability to tag existing posts' )),
array ( 'categories' , t ( 'Post Categories' ), t ( 'Add categories to your posts' )),
array ( 'filing' , t ( 'Saved Folders' ), t ( 'Ability to file posts under folders' )),
array ( 'dislike' , t ( 'Dislike Posts' ), t ( 'Ability to dislike posts/comments' )),
array ( 'star_posts' , t ( 'Star Posts' ), t ( 'Ability to mark special posts with a star indicator' )),
2014-09-03 19:27:28 -04:00
array ( 'ignore_posts' , t ( 'Mute Post Notifications' ), t ( 'Ability to mute notifications for a thread' )),
2012-11-22 11:20:03 -05:00
),
);
call_hooks ( 'get_features' , $arr );
return $arr ;
}