本文整理汇总了PHP中Problem::getMeetingPlace方法的典型用法代码示例。如果您正苦于以下问题:PHP Problem::getMeetingPlace方法的具体用法?PHP Problem::getMeetingPlace怎么用?PHP Problem::getMeetingPlace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Problem
的用法示例。
在下文中一共展示了Problem::getMeetingPlace方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: insert
/**
* bool insert(Problem $problem, int $idUser, string $login)
*
* Inserts a new medical problem into the deleted problems table.
*
* @param Problem $problem medical problem to insert
* @param int $idUser key of user that makes deletion
* @param string $login login session of user that makes deletion
* @return boolean returns false, if error occurs
* @access public
*/
function insert($problem, $idUser, $login)
{
$sql = "INSERT INTO " . $this->_table;
$sql .= " (id_problem, last_update_date, id_patient, id_member, collegiate_number, order_number, ";
$sql .= "opening_date, closing_date, meeting_place, wording, subjective, objective, ";
$sql .= "appreciation, action_plan, prescription, create_date, id_user, login) VALUES (";
$sql .= "?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, NOW(), ?, ?);";
$params = array($problem->getIdProblem(), $problem->getLastUpdateDate(), $problem->getIdPatient(), $problem->getIdMember(), urlencode($problem->getCollegiateNumber()), $problem->getOrderNumber(), $problem->getOpeningDate(), $problem->getClosingDate(), urlencode($problem->getMeetingPlace()), $problem->getWording(), urlencode($problem->getSubjective()), urlencode($problem->getObjective()), urlencode($problem->getAppreciation()), urlencode($problem->getActionPlan()), urlencode($problem->getPrescription()), intval($idUser), urlencode($login));
return $this->exec($sql, $params);
}
示例2: Problem
}
$problem = new Problem($idProblem);
if (!$problem) {
FlashMsg::add(_("Nenhum atendimento foi realizado até o momento."), OPEN_MSG_ERROR);
header("Location: ../medical/patient_search_form.php");
exit;
}
$formVar["id_problem"] = $idProblem;
$formVar["id_patient"] = $idPatient;
$formVar["order_number"] = $problem->getOrderNumber();
$formVar["opening_date"] = $problem->getOpeningDate();
if (!isset($formError)) {
$formVar["last_update_date"] = $problem->getLastUpdateDate();
$formVar["id_member"] = $problem->getIdMember();
$formVar["closed_problem"] = $problem->getClosingDate() != "" && $problem->getClosingDate() != "0000-00-00" ? "checked" : "";
$formVar["meeting_place"] = $problem->getMeetingPlace();
$formVar["wording"] = $problem->getWording();
$formVar["subjective"] = $problem->getSubjective();
$formVar["objective"] = $problem->getObjective();
$formVar["appreciation"] = $problem->getAppreciation();
$formVar["action_plan"] = $problem->getActionPlan();
$formVar["prescription"] = $problem->getPrescription();
}
/**
* Show page
*/
$title = _("Editar Atendimento");
$titlePage = $patient->getName() . ' [' . $problem->getWordingPreview() . '] (' . $title . ')';
$focusFormField = "wording";
// to avoid JavaScript mistakes in demo version
require_once "../layout/header.php";
示例3: unset
}
$staffQ->close();
unset($staffQ);
unset($staff);
}
echo HTML::section(3, _("Opening Date"));
echo HTML::para(I18n::localDate($problem->getOpeningDate()));
if ($problem->getLastUpdateDate() != "" && $problem->getLastUpdateDate() != "0000-00-00") {
echo HTML::section(3, _("Last Update Date"));
echo HTML::para(I18n::localDate($problem->getLastUpdateDate()));
}
if ($problem->getClosingDate() != "" && $problem->getClosingDate() != "0000-00-00") {
echo HTML::section(3, _("Closing Date"));
echo HTML::para(I18n::localDate($problem->getClosingDate()));
}
if ($problem->getMeetingPlace()) {
echo HTML::section(3, _("Meeting Place"));
echo HTML::para($problem->getMeetingPlace());
}
echo HTML::section(3, _("Wording"));
echo HTML::para(nl2br($problem->getWording()));
if ($problem->getSubjective()) {
echo HTML::section(3, _("Subjective"));
echo HTML::para(nl2br($problem->getSubjective()));
}
if ($problem->getObjective()) {
echo HTML::section(3, _("Objective"));
echo HTML::para(nl2br($problem->getObjective()));
}
if ($problem->getAppreciation()) {
echo HTML::section(3, _("Appreciation"));
示例4: update
/**
* bool update(Problem $problem)
*
* Update a medical problem in the problems table.
*
* @param Problem $problem medical problem to update
* @return boolean returns false, if error occurs
* @access public
*/
function update($problem)
{
if (!$problem instanceof Problem) {
$this->_error = "Argument is an inappropriate object.";
return false;
}
$sql = "UPDATE " . $this->_table . " SET " . "last_update_date=CURDATE(), " . "id_member=?, " . "closing_date=?, " . "meeting_place=?, " . "wording=?, " . "subjective=?, " . "objective=?, " . "appreciation=?, " . "action_plan=?, " . "prescription=? " . "WHERE id_problem=?;";
$params = array($problem->getIdMember(), urlencode($problem->getClosingDate(false)), urlencode($problem->getMeetingPlace()), urlencode($problem->getWording()), urlencode($problem->getSubjective()), urlencode($problem->getObjective()), urlencode($problem->getAppreciation()), urlencode($problem->getActionPlan()), urlencode($problem->getPrescription()), $problem->getIdProblem());
return $this->exec($sql, $params);
}