本文整理汇总了PHP中Utilities::get_project方法的典型用法代码示例。如果您正苦于以下问题:PHP Utilities::get_project方法的具体用法?PHP Utilities::get_project怎么用?PHP Utilities::get_project使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utilities
的用法示例。
在下文中一共展示了Utilities::get_project方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editView
public function editView()
{
if (Input::has("projId")) {
return View::make("project/edit", array("projectId" => Input::get("projId"), "project" => Utilities::get_project($_GET['projId'])));
} else {
return Redirect::to("home");
}
}
示例2: editView
public function editView()
{
$app_config = Utilities::read_config();
$queueDefaults = array("queueName" => $app_config["queue-name"], "nodeCount" => $app_config["node-count"], "cpuCount" => $app_config["total-cpu-count"], "wallTimeLimit" => $app_config["wall-time-limit"]);
$experiment = Utilities::get_experiment($_GET['expId']);
$project = Utilities::get_project($experiment->projectID);
$expVal = Utilities::get_experiment_values($experiment, $project);
//var_dump( $expVal); exit;
$computeResources = Utilities::create_compute_resources_select($experiment->applicationId, $expVal['scheduling']->resourceHostId);
$experimentInputs = array("disabled" => ' ', "experimentName" => $experiment->name, "experimentDescription" => $experiment->description, "application" => $experiment->applicationId, "allowedFileSize" => $app_config["server-allowed-file-size"], 'experiment' => $experiment, "queueDefaults" => $queueDefaults, 'project' => $project, 'expVal' => $expVal, 'cloning' => true, 'advancedOptions' => $app_config["advanced-experiment-options"], 'computeResources' => $computeResources, "resourceHostId" => $expVal['scheduling']->resourceHostId, 'project' => $project, 'expVal' => $expVal, 'cloning' => true, 'advancedOptions' => $app_config["advanced-experiment-options"]);
return View::make("experiment/edit", array("expInputs" => $experimentInputs));
}
示例3: get_expsearch_results
/**
* Get results of the user's search of experiments
* @return array|null
*/
public static function get_expsearch_results( $inputs)
{
$experiments = array();
try
{
switch ( $inputs["search-key"])
{
case 'experiment-name':
$experiments = Airavata::searchExperimentsByName(Session::get('gateway_id'), Session::get('username'), $inputs["search-value"]);
break;
case 'experiment-description':
$experiments = Airavata::searchExperimentsByDesc(Session::get('gateway_id'), Session::get('username'), $inputs["search-value"]);
break;
case 'application':
$experiments = Airavata::searchExperimentsByApplication(Session::get('gateway_id'), Session::get('username'), $inputs["search-value"]);
break;
case 'creation-time':
$experiments = Airavata::searchExperimentsByCreationTime(Session::get('gateway_id'), Session::get('username'), strtotime( $inputs["from-date"])*1000, strtotime( $inputs["to-date"])*1000 );
break;
case '':
}
}
catch (InvalidRequestException $ire)
{
Utilities::print_error_message('InvalidRequestException!<br><br>' . $ire->getMessage());
}
catch (AiravataClientException $ace)
{
Utilities::print_error_message('AiravataClientException!<br><br>' . $ace->getMessage());
}
catch (AiravataSystemException $ase)
{
if ($ase->airavataErrorType == 2) // 2 = INTERNAL_ERROR
{
Utilities::print_info_message('<p>You have not created any experiments yet, so no results will be returned!</p>
<p>Click <a href="create_experiment.php">here</a> to create an experiment, or
<a href="create_project.php">here</a> to create a new project.</p>');
}
else
{
Utilities::print_error_message('There was a problem with Airavata. Please try again later or report a bug using the link in the Help menu.');
//print_error_message('AiravataSystemException!<br><br>' . $ase->airavataErrorType . ': ' . $ase->getMessage());
}
}
catch (TTransportException $tte)
{
Utilities::print_error_message('TTransportException!<br><br>' . $tte->getMessage());
}
//get values of all experiments
$expContainer = array();
$expNum = 0;
foreach( $experiments as $experiment)
{
$expValue = Utilities::get_experiment_values( $experiment, Utilities::get_project($experiment->projectID), true );
$expContainer[$expNum]['experiment'] = $experiment;
if( $expValue["experimentStatusString"] == "FAILED")
$expValue["editable"] = false;
$expContainer[$expNum]['expValue'] = $expValue;
$expNum++;
}
return $expContainer;
}
示例4: get_all_user_experiments_with_pagination
/**
* Get results of the user's all experiments with pagination.
* Results are ordered creation time DESC
* @return array|null
*/
public static function get_all_user_experiments_with_pagination($limit, $offset)
{
$experiments = array();
try
{
$experiments = Airavata::getAllUserExperimentsWithPagination(
Session::get('gateway_id'), Session::get('username'), $limit, $offset
);
}
catch (InvalidRequestException $ire)
{
Utilities::print_error_message('InvalidRequestException!<br><br>' . $ire->getMessage());
}
catch (AiravataClientException $ace)
{
Utilities::print_error_message('AiravataClientException!<br><br>' . $ace->getMessage());
}
catch (AiravataSystemException $ase)
{
if ($ase->airavataErrorType == 2) // 2 = INTERNAL_ERROR
{
Utilities::print_info_message('<p>You have not created any experiments yet, so no results will be returned!</p>
<p>Click <a href="create_experiment.php">here</a> to create an experiment, or
<a href="create_project.php">here</a> to create a new project.</p>');
}
else
{
Utilities::print_error_message('There was a problem with Airavata. Please try again later or report a bug using the link in the Help menu.');
//print_error_message('AiravataSystemException!<br><br>' . $ase->airavataErrorType . ': ' . $ase->getMessage());
}
}
catch (TTransportException $tte)
{
Utilities::print_error_message('TTransportException!<br><br>' . $tte->getMessage());
}
//get values of all experiments
$expContainer = array();
$expNum = 0;
foreach( $experiments as $experiment)
{
$expValue = Utilities::get_experiment_values( $experiment, Utilities::get_project($experiment->projectID), true );
$expContainer[$expNum]['experiment'] = $experiment;
if( $expValue["experimentStatusString"] == "FAILED")
$expValue["editable"] = false;
$expContainer[$expNum]['expValue'] = $expValue;
$expNum++;
}
return $expContainer;
}
示例5: foreach
echo '<div class="table-responsive">';
echo '<table class="table">';
echo '<tr>';
echo '<th>Name</th>';
echo '<th>Application</th>';
echo '<th>Time</th>';
echo '<th>Status</th>';
echo '</tr>';
foreach ($experiments as $experiment)
{
$expValues = Utilities::get_experiment_values( $experiment, Utilities::get_project($experiment->projectID), true );
$applicationInterface = Utilities::get_application_interface($experiment->applicationId);
echo '<tr>';
echo '<td>';
switch ($expValues["experimentStatusString"])
{
case 'SCHEDULED':
case 'LAUNCHED':
case 'EXECUTING':
case 'CANCELING':
case 'COMPLETED':
echo $experiment->name;