Calculettes pour l'hydraulique
formulaires/courbe_remous.php
Aller à la documentation de ce fichier.
1
<?php
2
/**
3
* @file formulaires/courbe_remous.php
4
* Formulaire CVT pour le calcul d'une courbe de remous
5
*/
6
7
/* Copyright 2017 David Dorchies
8
*
9
* This program is free software; you can redistribute it and/or modify
10
* it under the terms of the GNU General Public License as published by
11
* the Free Software Foundation; either version 2 of the License, or
12
* (at your option) any later version.
13
*
14
* This program is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
* GNU General Public License for more details.
18
*
19
* You should have received a copy of the GNU General Public License
20
* along with this program; if not, write to the Free Software
21
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
* MA 02110-1301, USA.
23
*/
24
25
26
include_spip(
'hyd_inc/form_courbe_remous.class'
);
27
global
$FCR
;
// Nécessaire car nous ne sommes pas dans l'environnement global
28
$FCR
=
new
form_courbe_remous
;
29
30
function
formulaires_courbe_remous_charger_dist
() {
31
global
$FCR
;
32
return
$FCR->charger();
33
}
34
35
36
function
formulaires_courbe_remous_verifier_dist
() {
37
global
$FCR
;
38
return
$FCR->verifier();
39
}
40
41
42
function
formulaires_courbe_remous_traiter_dist
(){
43
global
$FCR
;
44
return
$FCR->traiter();
45
}
46
?>
$FCR
global $FCR
Definition:
formulaires/courbe_remous.php:27
formulaires_courbe_remous_charger_dist
formulaires_courbe_remous_charger_dist()
Definition:
formulaires/courbe_remous.php:30
formulaires_courbe_remous_verifier_dist
formulaires_courbe_remous_verifier_dist()
Definition:
formulaires/courbe_remous.php:36
form_courbe_remous
Definition:
form_courbe_remous.class.php:4
formulaires_courbe_remous_traiter_dist
formulaires_courbe_remous_traiter_dist()
Definition:
formulaires/courbe_remous.php:42
formulaires
courbe_remous.php
Généré par
1.8.13