1<?php
2
3$meta['tba_block_time']  = array('numeric');  // Block an IP address a certain amount of seconds
4$meta['tba_nb_attempt']  = array('numeric');  // If the user failed a certain amount of attempts to login
5$meta['tba_mean_time']   = array('numeric');  // Within a certain amount of seconds
6$meta['tba_whitelist']   = array('string');   // And is not on the white list
7
8$meta['tba_iptime_file'] = array('string');   // Log users attempts into this file
9$meta['tba_block_file']  = array('string');   // Log blocked users into this one
10$meta['tba_lockfile']    = array('string');   // Lock file to know when we can put content into the two others
11
12$meta['tba_send_mail']   = array('email');    // Define whom to send email when a user has been banned
13
14$meta['tba_block_whole_wiki'] = array('onoff'); // Define whether to block the whole wiki or just the login page
15