Browse Source

Added the getArguments() function for issue #553

Stephen Ficklin 6 năm trước cách đây
mục cha
commit
87efb0e959
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      tripal/includes/TripalImporter.inc

+ 10 - 0
tripal/includes/TripalImporter.inc

@@ -721,5 +721,15 @@ class TripalImporter {
    */
    */
   public function postRun() {
   public function postRun() {
   }
   }
+  
+  /**
+   * Retrieves the list of arguments that were provided to the importer.
+   * 
+   * @return
+   *   The array of arguments as passed to create function.
+   */
+  public function getArguments() {
+    return $this->arguments;
+  }
 
 
 }
 }