Last change
on this file was
815,
checked in by jrpelegrina, 4 years ago
|
Initial release of pmb 4.2
|
-
Property svn:executable set to
*
|
File size:
783 bytes
|
Line | |
---|
1 | <?php |
---|
2 | // +-------------------------------------------------+ |
---|
3 | // © 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net) |
---|
4 | // +-------------------------------------------------+ |
---|
5 | // $Id: abts_retard.inc.php,v 1.1 2011-06-27 15:26:59 ngantier Exp $ |
---|
6 | |
---|
7 | if (stristr($_SERVER['REQUEST_URI'], ".inc.php")) die("no access"); |
---|
8 | |
---|
9 | require_once("$class_path/abts_pointage.class.php"); |
---|
10 | |
---|
11 | $abts= new abts_pointage(); |
---|
12 | |
---|
13 | switch($action) { |
---|
14 | case 'relance': |
---|
15 | $abts->relance_retard(); |
---|
16 | echo $abts->get_form_retard(); |
---|
17 | break; |
---|
18 | case 'comment_gestion': |
---|
19 | $abts->set_comment_retard(1); |
---|
20 | echo $abts->get_form_retard(); |
---|
21 | break; |
---|
22 | case 'comment_opac': |
---|
23 | $abts->set_comment_retard(0); |
---|
24 | echo $abts->get_form_retard(); |
---|
25 | break; |
---|
26 | default: |
---|
27 | echo $abts->get_form_retard(); |
---|
28 | break; |
---|
29 | } |
---|
30 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.