소스 검색

Added the getArguments() function for issue #553

Stephen Ficklin 6 년 전
부모
커밋
87efb0e959
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      tripal/includes/TripalImporter.inc

+ 10 - 0
tripal/includes/TripalImporter.inc

@@ -721,5 +721,15 @@ class TripalImporter {
    */
   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;
+  }
 
 }