0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: activity.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: activity.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_activity_list() { return array( 'activity_basic_events' => array( 'name' => tr('Record Basic Events'), 'description' => tr('Enable recording of basic internal Tiki events. This is primarily an entry level options. Using custom events is strongly encouraged.'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_basic_tracker_update' => array( 'name' => tr('Record tracker item update'), 'description' => tr('Enable recording of basic internal Tiki events.'), 'dependencies' => array('activity_basic_events', 'feature_trackers'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_basic_tracker_create' => array( 'name' => tr('Record tracker item creation'), 'description' => tr('Enable recording of basic internal Tiki events.'), 'dependencies' => array('activity_basic_events', 'feature_trackers'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_basic_user_follow_add' => array( 'name' => tr('Record user following users'), 'description' => tr('Enable recording of basic internal Tiki events.'), 'dependencies' => array('activity_basic_events', 'feature_friends'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_basic_user_follow_incoming' => array( 'name' => tr('Record user being followed by users'), 'description' => tr('Enable recording of basic internal Tiki events.'), 'dependencies' => array('activity_basic_events', 'feature_friends'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_basic_user_friend_add' => array( 'name' => tr('Record user adding new friend'), 'description' => tr('Enable recording of basic internal Tiki events.'), 'dependencies' => array('activity_basic_events', 'feature_friends'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), 'activity_custom_events' => array( 'name' => tr('Custom Activities'), 'description' => tr('Allows to define custom behaviors on top of internal events.'), 'help' => 'Activity+Stream', 'type' => 'flag', 'default' => 'n', ), ); }