0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: mustread.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: mustread.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_mustread_list() { return array( 'mustread_enabled' => array( 'name' => tr('Must Read'), 'description' => tr('Allow to assign mandatory readings and track progress.'), 'help' => 'Must+Reads', 'type' => 'flag', 'default' => 'n', 'dependencies' => ['feature_search', 'feature_trackers'], ), 'mustread_tracker' => array( 'name' => tr('Must Read Tracker'), 'description' => tr('Tracker containing the individual read requests.'), 'hint' => tr('Tracker ID'), 'type' => 'text', 'filter' => 'int', 'size' => 6, 'profile_reference' => 'tracker', 'default' => '', ), ); }