本文整理汇总了PHP中Schedule::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Schedule::update方法的具体用法?PHP Schedule::update怎么用?PHP Schedule::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Schedule
的用法示例。
在下文中一共展示了Schedule::update方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editscheduleAction
public function editscheduleAction()
{
try {
$this->checkLogin();
$schedule = new Schedule();
$schedule->update($this->request->getPost());
header("Location: " . ROOT_URL . "/admin/finish/");
} catch (Exception $e) {
$this->displayErrorView($e->getMessage());
}
}
示例2: Schedule
include "large_menu.php";
/*include("small_menu_start.php");*/
?>
<!-- MAIN SECTION -->
<section class="main-section">
<div class="small-12 columns">
<div class="row">
<h4>horaire - <?php
$schedule = new Schedule();
if (isset($_POST["date"])) {
$schedule->initProperty($_POST["MyId"], $_POST["seasonId"], $_POST["categoryId"], $_POST["teamId"], $_POST["awayTeamId"], isset($_POST["tpHome"]) ? 1 : 0, strtotime($_POST["date"]), $_POST["stade"], $_POST["city"], $_POST["refereeId1"], $_POST["refereeId2"], $_POST["refereeId3"], $_POST["refereeId4"], $_POST["markerId1"], $_POST["markerId2"], $_POST["pointTp"], $_POST["pointAwayTeam"], $mySql);
$schedule->PageMode = $_POST["pageMode"];
$schedule->validate($mySql);
if (!$schedule->getHasError()) {
if ($schedule->PageMode == Constants::PAGE_MODE_EDIT) {
$schedule->update($mySql);
} else {
$schedule->addNew($mySql);
}
}
header('Location: schedule.php');
exit;
} else {
if (isset($_GET["id"])) {
$schedule->initDB($_GET["id"], $mySql);
echo date("Y-m-d H:i", $schedule->Date);
$schedule->PageMode = Constants::PAGE_MODE_EDIT;
} else {
echo "[Nouvelle]";
$schedule->PageMode = Constants::PAGE_MODE_ADD;
}
示例3: updateDays
public function updateDays()
{
Schedule::update();
$this->viewDetailSchedule();
}