本文整理汇总了PHP中QueryBuilder::addEqual方法的典型用法代码示例。如果您正苦于以下问题:PHP QueryBuilder::addEqual方法的具体用法?PHP QueryBuilder::addEqual怎么用?PHP QueryBuilder::addEqual使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QueryBuilder
的用法示例。
在下文中一共展示了QueryBuilder::addEqual方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($user)
{
$this->user = $user;
$today = new DateTime("now");
$ttrialBS = new TestTrialBS(null);
$qbuilder = new QueryBuilder('testtrial');
$qbuilder->addEqual("ttl_usr_id", $this->user->get('usr_id'));
$qbuilder->addLess("tst_openUntil", $today->format(Model::$SQL_DATE_FORMAT), "test");
$qbuilder->addOrder("ttl_tst_id", QueryBuilder::$DESC);
$qbuilder->addOrder("prb_title", QueryBuilder::$ASC, 'problem');
$qbuilder->addOrder("ttl_score", QueryBuilder::$DESC);
$this->trials = $ttrialBS->findNotDeleted($qbuilder);
}
示例2: __construct
public function __construct($testId, $password)
{
$this->user = UserSession::getInstance()->getUser();
$this->testId = $testId;
$this->password = $password;
$tprbBS = new TestProblemsBS(null);
$qbuilder = new QueryBuilder('testproblems');
$qbuilder->addEqual("tpb_tst_id", $testId);
$qbuilder->addOrder("tpb_questionNumber", QueryBuilder::$ASC);
$this->problems = $tprbBS->findNotDeleted($qbuilder);
$testBS = new TestBS(null);
$qbuilder = new QueryBuilder('test');
$qbuilder->addEqual("tst_id", $testId);
$qbuilder->addEqual("tst_password", $password);
$tests = $testBS->findNotDeleted($qbuilder);
if (count($tests) < 1) {
die("<h3>ACESSO NEGADO</h3>");
}
$this->test = $tests[0];
$ttrialBS = new TestTrialBS(null);
$ttrialBS->createUserTrials($this->problems);
$qbuilder = new QueryBuilder('testtrial');
$qbuilder->addEqual("ttl_tst_id", $testId);
$qbuilder->addEqual("ttl_usr_id", $this->user->get('usr_id'));
$trials = $ttrialBS->findNotDeleted($qbuilder);
$this->trials = array();
if (count($trials) > 0) {
foreach ($trials as $t => $trial) {
$this->trials[$trial->get('ttl_prb_id')] = $trial;
}
}
// Gravando log
if ($this->test->get("tst_enableLogging") != 0) {
$testBS->logAction($this->user->get('usr_id'), $this->testId, "Usuário abriu a prova.");
}
}
示例3: findNotDeleted
public function findNotDeleted($qbuilder)
{
@($dao = new DAO(Discipline));
if (!isset($qbuilder)) {
$qbuilder = new QueryBuilder('discipline');
$qbuilder->addOrder("dsc_code", QueryBuilder::$ASC);
$qbuilder->addOrder("dsc_name", QueryBuilder::$ASC);
}
$qbuilder->addJoin("user", "dsc_usr_id", "usr_id");
$qbuilder->addEqual("dsc_deleted", 0, 'discipline');
$disciplines = $dao->findByQuery($qbuilder);
return $disciplines;
}
示例4: count
$nProblems = count($tproblems);
if ($nProblems <= 0) {
die("Nenhum problema nesta prova.");
} else {
$test = $tproblems[0]->getForeignModel('tpb_tst_id');
$problemWeights = array();
$maxGradeSum = 0.0;
foreach ($tproblems as $tp => $tproblem) {
if (!isset($problemWeights[$tproblem->get('tpb_prb_id')])) {
$problemWeights[$tproblem->get('tpb_prb_id')] = 0;
}
$problemWeights[$tproblem->get('tpb_prb_id')] += $tproblem->get('tpb_weight');
$maxGradeSum += 100.0 * $tproblem->get('tpb_weight');
}
$qbuilder = new QueryBuilder('testtrial');
$qbuilder->addEqual('ttl_tst_id', $testSelected);
$qbuilder->addOrder('usr_name', QueryBuilder::$ASC, "user");
$qbuilder->addOrder('usr_matricula', QueryBuilder::$ASC, "user");
$qbuilder->addOrder('ttl_usr_id', QueryBuilder::$ASC);
$bs = new TestTrialBS(null);
$ttrials = $bs->findNotDeleted($qbuilder);
$userGrades = array();
$lastId = -1;
$lastPos = -1;
$averageScore = 0.0;
foreach ($ttrials as $tt => $ttrial) {
if ($lastId != $ttrial->get('ttl_usr_id')) {
$lastId = $ttrial->get('ttl_usr_id');
$lastPos++;
}
if (!isset($userGrades[$lastPos])) {
示例5: findNotDeleted
public function findNotDeleted($qbuilder)
{
@($dao = new DAO(Test));
if (!isset($qbuilder)) {
$qbuilder = new QueryBuilder('test');
$qbuilder->addOrder("dsc_code", QueryBuilder::$ASC, 'discipline');
$qbuilder->addOrder('tst_openUntil', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_visibleUntil', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_createdAt', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_title', QueryBuilder::$ASC);
$qbuilder->addOrder('tst_openSince', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_visibleSince', QueryBuilder::$DESC);
}
$qbuilder->addJoin("discipline", "tst_dsc_id", "dsc_id");
$qbuilder->addLeftJoin("testproblems", "tst_id", "tpb_tst_id", "tpb_deleted");
$qbuilder->addGroupBy("tst_id", "test");
$qbuilder->addEqual("tst_deleted", 0, 'test');
$tests = $dao->findByQueryWithMetaFields($qbuilder);
return $tests;
}
示例6: retrieve
public function retrieve($model = null)
{
@($dao = new DAO(TestTrial));
$qbuilder = new QueryBuilder('testtrial');
if (!isset($model)) {
$qbuilder->addEqual('ttl_usr_id', $this->params['ttl_usr_id']);
$qbuilder->addEqual('ttl_tst_id', $this->params['ttl_tst_id']);
$qbuilder->addEqual('ttl_prb_id', $this->params['ttl_prb_id']);
} else {
$qbuilder->addEqual('ttl_usr_id', $model->get('ttl_usr_id'));
$qbuilder->addEqual('ttl_tst_id', $model->get('ttl_tst_id'));
$qbuilder->addEqual('ttl_prb_id', $model->get('ttl_prb_id'));
}
$qbuilder->addJoin("user", "ttl_usr_id", "usr_id");
$qbuilder->addJoin("test", "ttl_tst_id", "tst_id");
$qbuilder->addJoin("problem", "ttl_prb_id", "prb_id");
$ttrial = $dao->findByQuery($qbuilder);
if (count($ttrial) > 0) {
return $ttrial[0];
} else {
return null;
}
}
示例7: EvaluationCaseBS
*/
name = "<?php
echo $problems[0]->getForeignModel("tpb_tst_id")->get("tst_title");
?>
";
cout << "Carregando conjunto de problemas: " << name << endl;
Problem *problem;
TestCase *testCase;
<?php
foreach ($problems as $p => $tproblem) {
?>
/*<?php
$problem = $tproblem->getForeignModel("tpb_prb_id");
$ecaseBS = new EvaluationCaseBS(null);
$qbuilder = new QueryBuilder("evaluationcase");
$qbuilder->addEqual("evc_prb_id", $problem->get("prb_id"));
$ecases = $ecaseBS->findNotDeleted($qbuilder);
$nECases = count($ecases);
?>
*/<?php
if ($nECases > 0) {
?>
problem = new Problem(<?php
echo $tproblem->get("tpb_questionNumber");
?>
, "<?php
echo $problem->get("prb_title");
?>
", <?php
echo $nECases;
?>
示例8: renderNotDeleted
public function renderNotDeleted($testSelected = null)
{
$bs = new TestProblemsBS(null);
if (!isset($testSelected) || $testSelected == "") {
$tproblems = $bs->findNotDeleted(null);
} else {
$qbuilder = new QueryBuilder('testproblems');
$qbuilder->addEqual('tpb_tst_id', $testSelected);
$qbuilder->addOrder('tpb_questionNumber', QueryBuilder::$ASC);
$qbuilder->addOrder('prb_title', QueryBuilder::$ASC, "problem");
$tproblems = $bs->findNotDeleted($qbuilder);
}
if (count($tproblems) <= 0) {
?>
<br/><i>Nenhum problema anexado à esta prova ainda.</i><br />
<?php
} else {
?>
<script type="text/javascript">
function deleteTestProblem(testId, probId) {
if (confirm("Deseja realmente desanexar este problema?")) {
$("#tproblems-action-form input[name='_action']").val("delete");
$("#tproblems-action-form input[name='tpb_tst_id']").val(testId);
$("#tproblems-action-form input[name='tpb_prb_id']").val(probId);
$("#tproblems-action-form").submit();
}
}
</script>
<form method="POST" action="./controller/TestProblemsController.php" style="display:none;"
id="tproblems-action-form">
<input type="hidden" name="_action" />
<input type="hidden" name="tpb_tst_id" />
<input type="hidden" name="tpb_prb_id" />
</form>
<table class="dataView">
<tr>
<th>Prova</th>
<th>Nº da Questão</th>
<th>Problema</th>
<th>Nível de Dificuldade</th>
<th>Peso</th>
<th style="min-width: 60px;width: 60px;max-width: 60px;">Ações</th>
</tr>
<?php
foreach ($tproblems as $tp => $tproblem) {
?>
<tr class="color<?php
echo $tp % 2;
?>
">
<td><?php
echo $tproblem->getForeignModel('tpb_tst_id')->get('tst_title');
?>
</td>
<td><?php
echo $tproblem->get('tpb_questionNumber');
?>
</td>
<td><?php
echo $tproblem->getForeignModel('tpb_prb_id')->get('prb_title');
?>
</td>
<td><?php
echo $tproblem->getForeignModel('tpb_prb_id')->get('prb_difficultyLevel');
?>
</td>
<td><?php
echo $tproblem->get('tpb_weight');
?>
</td>
<td class="actions">
<span class="ui-state-default ui-corner-all" title="Editar Anexo de Questão"
onClick="location.assign('./testProblemsEdit.php?tpb_tst_id=<?php
echo $tproblem->get("tpb_tst_id");
?>
&tpb_prb_id=<?php
echo $tproblem->get('tpb_prb_id');
?>
');">
<span class="ui-icon ui-icon-pencil"></span>
</span>
<span class="ui-state-default ui-corner-all" title="Desanexar Problema"
onClick="deleteTestProblem(<?php
echo $tproblem->get('tpb_tst_id');
?>
, <?php
echo $tproblem->get('tpb_prb_id');
?>
)">
<span class="ui-icon ui-icon-trash"></span>
</span>
</td>
</tr>
<?php
}
?>
</table>
<?php
}
}
示例9: renderNotDeleted
public function renderNotDeleted($disciplineSelected = null)
{
$bs = new TestBS(null);
if (!isset($disciplineSelected) || $disciplineSelected == "") {
$tests = $bs->findNotDeleted(null);
} else {
$qbuilder = new QueryBuilder('test');
$qbuilder->addEqual('tst_dsc_id', $disciplineSelected);
$qbuilder->addOrder('tst_openUntil', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_visibleUntil', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_createdAt', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_title', QueryBuilder::$ASC);
$qbuilder->addOrder('tst_openSince', QueryBuilder::$DESC);
$qbuilder->addOrder('tst_visibleSince', QueryBuilder::$DESC);
$tests = $bs->findNotDeleted($qbuilder);
}
if (count($tests) <= 0) {
?>
<br/><i>Nenhuma prova cadastrada ainda.</i><br />
<?php
} else {
?>
<script type="text/javascript">
function deleteTest(id) {
if (confirm("Deseja realmente excluir esta prova?")) {
$("#test-action-form input[name='_action']").val("delete");
$("#test-action-form input[name='tst_id']").val(id);
$("#test-action-form").submit();
}
}
</script>
<form method="POST" action="./controller/TestController.php" style="display:none;"
id="test-action-form">
<input type="hidden" name="_action" />
<input type="hidden" name="tst_id" />
</form>
<table class="dataView">
<tr>
<th>Disciplina</th>
<th>Título</th>
<th>Visível de</th>
<th>Visível até</th>
<th>Aberta de</th>
<th>Aberta até</th>
<th>Nº de Questões</th>
<th style="min-width:140px;width:140px;max-width:140px;">Ações</th>
</tr>
<?php
foreach ($tests as $t => $test) {
?>
<tr class="color<?php
echo $t % 2;
?>
">
<td><?php
echo $test->getForeignModel('tst_dsc_id')->get('dsc_code');
?>
</td>
<td><?php
echo $test->get('tst_title');
?>
</td>
<td><?php
echo Model::parseSQLToInputDate($test->get('tst_visibleSince'));
?>
</td>
<td><?php
echo Model::parseSQLToInputDate($test->get('tst_visibleUntil'));
?>
</td>
<td><?php
echo Model::parseSQLToInputDate($test->get('tst_openSince'));
?>
</td>
<td><?php
echo Model::parseSQLToInputDate($test->get('tst_openUntil'));
?>
</td>
<?php
$questions = $test->getMetaField("tst_numberOfQuestions");
if (!isset($questions) || $questions < 1) {
?>
<td style="background:#ff8888;"><?php
} else {
?>
<td><?php
}
echo $questions;
?>
</td>
<td class="actions">
<span class="ui-state-default ui-corner-all" title="Editar Prova"
onClick="location.assign('./testEdit.php?tst_id=<?php
echo $test->get("tst_id");
?>
');">
<span class="ui-icon ui-icon-pencil"></span>
</span>
<span class="ui-state-default ui-corner-all" title="Configurar Problemas/Questões da Prova"
onClick="location.assign('./testProblems.php?tpb_tst_id=<?php
//.........这里部分代码省略.........
示例10: recovery
public function recovery($email)
{
@($dao = new DAO(User));
$query = new QueryBuilder('user');
$query->addEqual('usr_email', $email);
$users = $dao->findByQuery($query);
if (count($users) != 1) {
die("Usuário não encontrado.");
} else {
$user = $users[0];
$nome = $user->get('usr_name');
$passw = generatePassword(9, 8);
$password = sha1($passw);
$user->set('usr_password', $password);
$dao->update($user);
$mail = new PHPMailer();
// Charset para evitar erros de caracteres
$mail->Charset = 'UTF-8';
// Dados de quem est? enviando o email
$mail->From = 'emaildoalgod@email.com';
$mail->FromName = 'Algod';
// Setando o conteudo
$mail->IsHTML(true);
$mail->Subject = 'Redefinicao de senha';
$mail->Body = 'Voce solicitou a redefinicao da sua senha. Sua senha temporaria e ' . $passw . '<br>Por favor faca login em sua conta e modifique-a';
$mail->AltBody = 'Voce solicitou a redefinicao da sua senha. Sua senha temporaria e ' . $passw . ' Por favor faca login em sua conta e modifique-a';
// Validando a autentica??o
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = "ssl://smtp.googlemail.com";
$mail->Port = 465;
$mail->Username = 'emailalgod@gmail.com';
$mail->Password = 'coca-cola123';
// Setando o endere?o de recebimento
$mail->AddAddress($email, $nome);
$result = $mail->Send();
if ($result) {
return TRUE;
} else {
$error = $mail->ErrorInfo;
die($error);
//return FALSE;
}
}
}
示例11: findNotDeleted
public function findNotDeleted($qbuilder)
{
@($dao = new DAO(TestProblems));
if (!isset($qbuilder)) {
$qbuilder = new QueryBuilder('testproblems');
$qbuilder->addOrder("tst_title", QueryBuilder::$ASC, 'test');
$qbuilder->addOrder("tpb_questionNumber", QueryBuilder::$ASC);
$qbuilder->addOrder("prb_title", QueryBuilder::$ASC, 'problem');
}
$qbuilder->addJoin("test", "tpb_tst_id", "tst_id");
$qbuilder->addJoin("problem", "tpb_prb_id", "prb_id");
$qbuilder->addEqual("tpb_deleted", 0);
$tproblems = $dao->findByQuery($qbuilder);
return $tproblems;
}
示例12: findNotDeleted
public function findNotDeleted($qbuilder)
{
@($dao = new DAO(Problem));
if (!isset($qbuilder)) {
$qbuilder = new QueryBuilder('problem');
$qbuilder->addOrder("dsc_code", QueryBuilder::$ASC, 'discipline');
$qbuilder->addOrder("prb_difficultyLevel", QueryBuilder::$ASC);
$qbuilder->addOrder("prb_title", QueryBuilder::$ASC);
}
$qbuilder->addJoin("discipline", "prb_dsc_id", "dsc_id");
$qbuilder->addLeftJoin("evaluationcase", "prb_id", "evc_prb_id", "evc_deleted");
$qbuilder->addGroupBy("prb_id", "problem");
$qbuilder->addEqual("prb_deleted", 0);
$problems = $dao->findByQueryWithMetaFields($qbuilder);
return $problems;
}
示例13: renderNotDeleted
public function renderNotDeleted($disciplineSelected = null, $titleFilter = null)
{
$bs = new ProblemBS(null);
$ecaseBS = new EvaluationCaseBS(null);
$qbuilder = new QueryBuilder('problem');
if (isset($titleFilter) && $titleFilter != "") {
$qbuilder->addLike("prb_title", "%" . $titleFilter . "%");
}
if (isset($disciplineSelected) && $disciplineSelected != "") {
$qbuilder->addEqual('prb_dsc_id', $disciplineSelected);
}
$qbuilder->addOrder('prb_difficultyLevel', QueryBuilder::$ASC);
$qbuilder->addOrder('prb_title', QueryBuilder::$ASC);
$problems = $bs->findNotDeleted($qbuilder);
if (count($problems) <= 0) {
?>
<br/><i>Nenhum problema cadastrada ainda.</i><br />
<?php
} else {
?>
<script type="text/javascript">
function deleteProblem(id) {
if (confirm("Deseja realmente excluir este problema?")) {
$("#problem-action-form input[name='_action']").val("delete");
$("#problem-action-form input[name='prb_id']").val(id);
$("#problem-action-form").submit();
}
}
</script>
<form method="POST" action="./controller/ProblemController.php" style="display:none;"
id="problem-action-form">
<input type="hidden" name="_action" />
<input type="hidden" name="prb_id" />
</form>
<table class="dataView">
<tr>
<th>Disciplina</th>
<th>Título</th>
<th>Nível de Dificuldade</th>
<th>Casos de Teste</th>
<th style="min-width: 80px;width: 80px;max-width: 80px;">Ações</th>
</tr>
<?php
foreach ($problems as $p => $problem) {
?>
<tr class="color<?php
echo $p % 2;
?>
">
<td><?php
echo $problem->getForeignModel('prb_dsc_id')->get('dsc_code');
?>
</td>
<td><?php
echo $problem->get('prb_title');
?>
</td>
<td><?php
echo $problem->get('prb_difficultyLevel');
?>
</td>
<?php
$nECases = $problem->getMetaField("prb_numberOfTestCases");
if (!isset($nECases) || $nECases < 1) {
?>
<td style="background:#ff8888;"><?php
} else {
?>
<td><?php
}
echo $nECases;
?>
</td>
<td class="actions">
<span class="ui-state-default ui-corner-all" title="Editar Problema"
onClick="location.assign('./problemEdit.php?prb_id=<?php
echo $problem->get("prb_id");
?>
');">
<span class="ui-icon ui-icon-pencil"></span>
</span>
<span class="ui-state-default ui-corner-all" title="Configurar Casos de Teste"
onClick="location.assign('./evaluationCases.php?evc_prb_id=<?php
echo $problem->get("prb_id");
?>
');">
<span class="ui-icon ui-icon-gear"></span>
</span>
<span class="ui-state-default ui-corner-all" title="Excluir Problema"
onClick="deleteProblem(<?php
echo $problem->get('prb_id');
?>
)">
<span class="ui-icon ui-icon-trash"></span>
</span>
</td>
</tr>
<?php
}
?>
//.........这里部分代码省略.........
示例14: render
public function render($testSelected = null)
{
$bs = new TestLogBS(null);
if (!isset($testSelected) || $testSelected == "") {
echo "<i>Nenhuma prova selecionada.</i>";
return;
} else {
$qbuilder = new QueryBuilder('testlog');
$qbuilder->addEqual('tsl_tst_id', $testSelected);
$qbuilder->addOrder("usr_name", QueryBuilder::$ASC, 'user');
$qbuilder->addOrder("tsl_time", QueryBuilder::$DESC);
$qbuilder->addOrder("tsl_remoteAddr", QueryBuilder::$ASC);
$tlogs = $bs->findAll($qbuilder);
}
$nLogs = count($tlogs);
if ($nLogs <= 0) {
?>
<br/><i>Nenhum log recuperado referente à esta prova.</i><br />
<?php
} else {
$test = $tlogs[0]->getForeignModel('tsl_tst_id');
?>
<h2><?php
echo $test->get('tst_title');
?>
</h2><br /><br />
<?php
$first = true;
$prevUser = -1;
foreach ($tlogs as $tl => $tlog) {
if ($prevUser != $tlog->get('tsl_usr_id')) {
$user = $tlog->getForeignModel('tsl_usr_id');
$prevUser = $tlog->get('tsl_usr_id');
if ($first == true) {
$first = false;
} else {
?>
</table>
<?php
}
?>
<br /><h3><?php
echo $user->get("usr_name");
?>
</h3>
<table class="dataView">
<tr>
<th style="min-width:150px;width:150px;max-width:150px;">Horário</th>
<th style="min-width:130px;width:130px;max-width:130px;">IP</th>
<th style="min-width:150px;width:150px;max-width:150px;">Hostname</th>
<th style="min-width:150px;width:150px;max-width:150px;">Questão</th>
<th style="min-width:150px;width:150px;max-width:150px;">Nota</th>
<th>Mensagem</th>
</tr>
<?php
}
?>
<tr class="color<?php
echo $tl % 2;
?>
">
<td><?php
echo Model::parseSQLToInputDate($tlog->get('tsl_time'));
?>
</td>
<td><?php
echo $tlog->get('tsl_remoteAddr');
?>
</td>
<td><?php
echo $tlog->get('tsl_hostname');
?>
</td>
<td><?php
echo $tlog->get('tsl_questNumber');
?>
</td>
<td><?php
echo $tlog->get('tsl_score');
?>
</td>
<td style="cursor:pointer" onClick="openDivAsDialog('logmessagediv-<?php
echo $tl;
?>
');">
<?php
echo substr($tlog->get('tsl_message'), 0, 50);
?>
...
<div style='display:none;' id='logmessagediv-<?php
echo $tl;
?>
'>
<textarea class="cpp-code-view"><?php
echo $tlog->get('tsl_message');
?>
</textarea>
</div>
</td>
</tr>
//.........这里部分代码省略.........
示例15: renderNotDeleted
public function renderNotDeleted($problemSelected = null)
{
$bs = new EvaluationCaseBS(null);
if (!isset($problemSelected) || $problemSelected == "") {
$ecases = $bs->findNotDeleted(null);
} else {
$qbuilder = new QueryBuilder('evaluationcase');
$qbuilder->addEqual('evc_prb_id', $problemSelected);
$qbuilder->addOrder('evc_id', QueryBuilder::$ASC);
$ecases = $bs->findNotDeleted($qbuilder);
}
if (count($ecases) <= 0) {
?>
<br/><i>Nenhum caso de teste cadastrado ainda.</i><br />
<?php
} else {
?>
<script type="text/javascript">
function deleteECase(id, probId) {
if (confirm("Deseja realmente excluir este caso de teste?")) {
$("#ecase-action-form input[name='_action']").val("delete");
$("#ecase-action-form input[name='evc_id']").val(id);
$("#ecase-action-form input[name='evc_prb_id']").val(probId);
$("#ecase-action-form").submit();
}
}
</script>
<form method="POST" action="./controller/EvaluationCaseController.php" style="display:none;"
id="ecase-action-form">
<input type="hidden" name="_action" />
<input type="hidden" name="evc_id" />
<input type="hidden" name="evc_prb_id" />
</form>
<table class="dataView">
<tr>
<th>Problema</th>
<th>Entradas</th>
<th>Tipos das Entradas</th>
<th>Saídas</th>
<th>Tipos das Saídas</th>
<th style="min-width: 60px;width: 60px;max-width: 60px;">Ações</th>
</tr>
<?php
foreach ($ecases as $ec => $ecase) {
?>
<tr class="color<?php
echo $ec % 2;
?>
">
<td><?php
echo $ecase->getForeignModel('evc_prb_id')->get('prb_title');
?>
</td>
<td><?php
echo $ecase->get('evc_inputs');
?>
</td>
<td><?php
echo $ecase->get('evc_inputsDataTypes');
?>
</td>
<td><?php
echo $ecase->get('evc_outputs');
?>
</td>
<td><?php
echo $ecase->get('evc_outputsDataTypes');
?>
</td>
<td class="actions">
<span class="ui-state-default ui-corner-all" title="Editar Caso de Teste"
onClick="location.assign('./evaluationCaseEdit.php?evc_id=<?php
echo $ecase->get("evc_id");
?>
&evc_prb_id=<?php
echo $ecase->get('evc_prb_id');
?>
');">
<span class="ui-icon ui-icon-pencil"></span>
</span>
<span class="ui-state-default ui-corner-all" title="Excluir Problema"
onClick="deleteECase(<?php
echo $ecase->get('evc_id');
?>
, <?php
echo $ecase->get('evc_prb_id');
?>
)">
<span class="ui-icon ui-icon-trash"></span>
</span>
</td>
</tr>
<?php
}
?>
</table>
<?php
}
}