本文整理汇总了PHP中Planning::planningModify方法的典型用法代码示例。如果您正苦于以下问题:PHP Planning::planningModify方法的具体用法?PHP Planning::planningModify怎么用?PHP Planning::planningModify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Planning
的用法示例。
在下文中一共展示了Planning::planningModify方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
$filenameDest = $imageManager->fileDestManagement($source, date('Ymd'));
//Image
$destination = $_SERVER['DOCUMENT_ROOT'] . '/photos/bdc' . $filenameDest;
//print_r($source);exit();
if (!copy($source, $destination)) {
throw new Exception('Erreur contactez votre administrateur <br> Le PDF error:', $e->getMessage(), "\n");
exit;
}
//Vignette
$_POST['pdf'] = $filenameDest;
}
$imageManager = null;
if ($_POST['action'] == 'modif') {
//Modifier la news
try {
$result = $planning->planningModify($_POST);
header('Location: /admin/planning.php');
} catch (Exception $e) {
echo 'Erreur contactez votre administrateur <br> :', $e->getMessage(), "\n";
exit;
}
}
}
// ----------------------------------------------------------- //
// ---- Traitement des offres -------------------------------- //
if ($_POST["reference"] == "offres") {
if ($debug) {
echo "Traitement des offres...<br>";
}
$offre = new Offre();
$offre_type_bien = new Offre_type_bien();