diff options
Diffstat (limited to 'modules/import.module')
-rw-r--r-- | modules/import.module | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/import.module b/modules/import.module index 726dc08f5..0e3f3e239 100644 --- a/modules/import.module +++ b/modules/import.module @@ -11,6 +11,11 @@ function import_help() { <?php } +function import_system($field){ + $system["description"] = t("Used to import syndicated content (ie. news)"); + return $system[$field]; +} + function import_conf_options() { $number = array(5 => 5, 10 => 10, 15 => 15, 20 => 20, 25 => 25, 30 => 30, 35 => 35, 40 => 40, 45 => 45, 50 => 50, 55 => 55, 60 => 60, 65 => 65, 70 => 70, 75 => 75, 80 => 80, 85 => 85, 90 => 90, 95 => 95, 100 => 100); $output .= form_select("Items per block", "import_block_limit", variable_get("import_block_limit", 15), $number, "The maximum number of items displayed in one block."); |