1<?php
2/**
3 * Options for directions plugin
4 */
5
6$conf['max_directions'] = "7"; // Maximum number of visible results for a single page directions table.
7$conf['hitslog'] = "data/hits.log"; // relative path to hits logfile
8$conf['registered_only'] = "0"; // Show only data for registered users only.
9$conf['trim_limit'] = "19"; // Visible chars when page title is too big.
10$conf['banned_ip']  = ""; // Banned ip to ignore (list of ips separated by commas)
11$conf['banned_users']  = ""; // Banned users to ignore (list of login separated by commas)
12$conf['banned_agents'] = ""; // Banned agents to ignore (list of strings to detect separated by commas)
13
14?>
15