You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by nd...@apache.org on 2015/05/13 18:11:05 UTC

airavata-php-gateway git commit: adding missing experiment function

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/master 1c887b3e0 -> 0677c0889


adding missing experiment function


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/0677c088
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/0677c088
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/0677c088

Branch: refs/heads/master
Commit: 0677c08895b821b0bcfa435e2d69aac6dc9e2041
Parents: 1c887b3
Author: Nipurn Doshi <ni...@gmail.com>
Authored: Wed May 13 12:10:42 2015 -0400
Committer: Nipurn Doshi <ni...@gmail.com>
Committed: Wed May 13 12:10:42 2015 -0400

----------------------------------------------------------------------
 app/libraries/Utilities.php | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/0677c088/app/libraries/Utilities.php
----------------------------------------------------------------------
diff --git a/app/libraries/Utilities.php b/app/libraries/Utilities.php
index 611e54b..722f326 100644
--- a/app/libraries/Utilities.php
+++ b/app/libraries/Utilities.php
@@ -2234,6 +2234,11 @@ public static function get_transfer_details( $experimentId){
     return Airavata::getDataTransferDetails( $experimentId);
 }
 
+public static function getQueueDatafromResourceId( $crId){
+    $resourceObject = Airavata::getComputeResource( $crId);
+    return $resourceObject->batchQueues;
+}
+
 }
 
 ?>