本文整理汇总了PHP中Plan::setConnector方法的典型用法代码示例。如果您正苦于以下问题:PHP Plan::setConnector方法的具体用法?PHP Plan::setConnector怎么用?PHP Plan::setConnector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Plan
的用法示例。
在下文中一共展示了Plan::setConnector方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getListForStudent
public function getListForStudent($student, $order = "data_esame")
{
$order = trim(filter_var($order, FILTER_SANITIZE_STRING));
//interrogazione tabella
$sql = "select * from appelli where id_piano = '{$student->id_plan}' and id_appello not in (select id_appello from prenotazioni where id_studente = '{$student->id}') ORDER BY {$order}";
$auth = $this->connector->query($sql);
$list = array();
// controllo sul risultato dell'interrogazione
if (mysql_num_rows($auth) > 0) {
$plan = new Plan();
$plan->setConnector($this->connector);
$subject = new Subject();
$subject->setConnector($this->connector);
while ($res = $this->connector->getObjectResult($auth)) {
$book = new Booking($res->id_appello, $res->id_piano, $res->id_materia, $res->anno, $res->docente, $res->data_esame);
//Calcolo le informazioni di servizio
$currPlan = $plan->getById($book->plan_id);
$book->course_name = $currPlan->course_name;
$book->plan_code = $currPlan->plan_code;
$book->subject_name = $subject->getById($book->subject_id)->name;
$list[] = $book;
}
}
return $list;
}
示例2: getList
public function getList($studend)
{
// interrogazione della tabella
$sql = "SELECT * FROM esami WHERE id_studente='{$studend->id}'";
$auth = $this->connector->query($sql);
$list = array();
if (mysql_num_rows($auth) > 0) {
while ($res = $this->connector->getObjectResult($auth)) {
$exam = new Exam(get_object_vars($res));
//Calcolo le informazioni di servizio
$plan = new Plan();
$plan->setConnector($this->connector);
$student_plan = $plan->getById($studend->id_plan);
foreach ($student_plan->subjects as $subj) {
if ($exam->id_subject == $subj->subject_id) {
$exam->year = $subj->year;
break;
}
}
$subject = new Subject();
$subject->setConnector($this->connector);
$exam->subject_name = $subject->getById($exam->id_subject)->name;
$list[] = $exam;
}
}
return $list;
}
示例3: search
public function search($val, $order = "nome", $numRows = 1000000)
{
$order = trim(filter_var($order, FILTER_SANITIZE_STRING));
$numRows = (int) $numRows;
// interrogazione della tabella
$sql = "SELECT id_studente,nome,cognome,data_nascita,id_piano FROM studenti WHERE nome LIKE '%{$val}%' OR cognome LIKE '%{$val}%' ORDER BY {$order} LIMIT {$numRows}";
$auth = $this->connector->query($sql);
$list = array();
if (mysql_num_rows($auth) > 0) {
while ($res = $this->connector->getObjectResult($auth)) {
$student = new Student();
$student->id = $res->id_studente;
$student->name = $res->nome;
$student->surname = $res->cognome;
$student->date_born = $res->data_nascita;
$student->id_plan = $res->id_piano;
$plan = new Plan();
$plan->setConnector($this->connector);
$student_plan = $plan->getById($student->id_plan);
$student->course_name = $student_plan->course_name;
$list[] = $student;
}
}
return $list;
}
示例4: homepage
function homepage()
{
global $connector;
global $result;
if (isset($_SESSION['admin'])) {
header("Location: admin/");
}
if (isset($_SESSION['login'])) {
include_once "classes/Student.php";
include_once "classes/Exam.php";
include_once "classes/Plan.php";
include_once "classes/Payment.php";
include_once "classes/Notice.php";
include_once "classes/Booking.php";
include_once "classes/Document.php";
$student = new Student();
$student->setConnector($connector);
$student = $student->getById($_SESSION['id_student']);
$student->setConnector($connector);
$exam = new Exam();
$plan = new Plan();
$payment = new Payment();
$notice = new Notice();
$booking = new Booking();
$document = new Document();
$exam->setConnector($connector);
$plan->setConnector($connector);
$payment->setConnector($connector);
$notice->setConnector($connector);
$booking->setConnector($connector);
$document->setConnector($connector);
if (isset($_POST['operation'])) {
list($operation, $params) = explode("#", $_POST['operation']);
switch ($operation) {
case 'editChanges':
$student->storeFormValues($_POST);
$student->id = $params;
if (isset($_POST['password']) && $_POST['password'] != '') {
$student->generatePassword($_POST['password']);
}
$error_msg = $student->update();
break;
case 'saveBook':
$error_msg = $booking->saveBooking($student->id, $params);
break;
case 'sendMail':
$error_msg = sendMail();
break;
default:
$error_msg = $operation . "#" . $params;
break;
}
if ($error_msg != "") {
$result["errorMessage"] = $error_msg;
} elseif ($operation != 'edit' && $operation != "nextPage") {
$result["statusMessage"] = "Operazione completata!";
}
}
if ($student) {
$result["edit"] = $student;
$result["edit"]->exam = $exam->getList($student);
$result["edit"]->plan = $plan->getById($student->id_plan);
$result['edit']->payment = $payment->getById($student->id);
$result['edit']->notice = $notice->getList();
$result['edit']->booking = $booking->getListForStudent($student);
$result['edit']->booked = $booking->getBookedList($student->id);
$result['edit']->document = $document->getList();
}
$page = "home.php";
include_once BASE_PATH . "/template.php";
} else {
$page = "login.php";
include_once BASE_PATH . "/template.php";
}
}
示例5: showPlan
function showPlan()
{
global $connector;
global $result;
$plan = new Plan();
$plan->setConnector($connector);
$course = new Course();
$course->setConnector($connector);
$subject = new Subject();
$subject->setConnector($connector);
if ($_POST['operation']) {
list($operation, $params) = explode("#", $_POST['operation']);
switch ($operation) {
case 'saveChanges':
$plan->storeFormValues($_POST);
$error_msg = $plan->insert();
if ($error_msg) {
$result['edit'] = $plan;
}
break;
case 'delete':
$error_msg = $plan->delete($params);
break;
case 'edit':
$result['edit'] = $plan->getById($params);
break;
case 'editChanges':
$plan->storeFormValues($_POST);
$error_msg = $plan->update();
break;
default:
$error_msg = "Operazione non valida";
}
if ($error_msg != "") {
$result["errorMessage"] = $error_msg;
} elseif ($operation != 'edit') {
$result["statusMessage"] = "Operazione completata!";
}
}
$result["courses"] = $course->getList("nome");
$result["plans"] = $plan->getList("codice");
$result["subjects"] = $subject->getList("nome");
$page = "plan.php";
include_once BASE_PATH . "template.php";
}