42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
if(isset($_POST['save'])){
$objSend->trim($_POST);
if(!$objSend->valid($_POST)){
$saveId = $objSend->updateLetter($_POST);
header("location:" . URL . "admin.php?action={$rule['action']}&modAction=letter");
}
}
$objSend->viewLetterOne();
if(!empty($_GET['tpl'])){
$objSend->admin_infoEditAdvicesOne($_GET['tpl']);
}
$objSend->viewGroup();
$objSend->viewInterest();
$objSend->viewAllAdvices();
$objSend->displayLetter();
?>
|