123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- class PubBulkImporter extends TripalImporter {
-
- public static $name = 'Chado Bulk Publication Importer';
-
- public static $machine_name = 'chado_pub_bulk';
-
- public static $description = 'Create and modify importers that can connect to and retrieve publications from remote databases.';
-
- public static $file_types = [];
-
- public static $upload_description = '';
-
- public static $upload_title = 'File Upload';
-
- public static $use_analysis = FALSE;
-
- public static $require_analysis = FALSE;
-
- public static $button_text = 'Import';
-
- public static $methods = [
-
- 'file_upload' => FALSE,
-
- 'file_local' => FALSE,
-
- 'file_remote' => FALSE,
- ];
-
- public static $file_required = FALSE;
-
- public static $argument_list = [];
-
- public static $cardinality = 0;
-
- public static $menu_path = '';
-
- public static $callback = 'tripal_pub_importers_list';
-
- public static $callback_module = 'tripal_chado';
-
- public static $callback_path = 'includes/loaders/tripal_chado.pub_importers.inc';
- }
|