options.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * List of plugin optins, contains only default values, actual values are stored in database |
| 4 | * and can be changed by corresponding wordpress function calls |
| 5 | */ |
| 6 | $config = array( |
| 7 | "info_api_url" => "http://www.wpallimport.com/adminpanel/update/info.php", |
| 8 | "history_file_count" => 10000, |
| 9 | "history_file_age" => 365, |
| 10 | "highlight_limit" => 10000, |
| 11 | "upload_max_filesize" => 2048, |
| 12 | "post_max_size" => 2048, |
| 13 | "max_input_time" => -1, |
| 14 | "max_execution_time" => -1, |
| 15 | "dismiss" => 0, |
| 16 | "html_entities" => 0 |
| 17 | ); |
| 18 |