noalyss
Version-9
Toggle main menu visibility
Main Page
Related Pages
Packages
Package List
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
$
a
s
u
v
Files
File List
Globals
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
p
r
s
t
u
w
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Typedefs
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Pages
include
anc_history.inc.php
Go to the documentation of this file.
1
<?php
2
3
//This file is part of NOALYSS and is under GPL
4
//see licence.txt
5
/**
6
*@file
7
*@brief Print history for Analytic accounting
8
* @see Anc_Listing
9
*/
10
11
if
( ! defined (
'ALLOWED'
) ) die(
'Appel direct ne sont pas permis'
);
12
$list
=
new
Anc_Listing
(
$cn
);
13
$list
->get_request();
14
15
echo
$list
->display_form();
16
//---- result
17
if
(isset(
$_GET
[
'result'
]))
18
{
19
echo
'<div class="content">'
;
20
21
//--------------------------------
22
// export Buttons
23
//---------------------------------
24
$result
=
$list
->display_html();
25
if
(
$list
->has_data > 0)
26
{
27
echo
$list
->show_button();
28
echo
$result
;
29
echo
'<div></div>'
;
30
echo
$list
->show_button();
31
32
}
33
else
34
{
35
echo
'<p class="notice">'
;
36
echo _(
'Aucune donnée trouvée'
);
37
echo
'</p>'
;
38
}
39
echo
'</div>'
;
40
}
41
echo
'</div>'
;
42
?>
$cn
$cn
Definition:
ajax_anc_accounting.php:30
$result
$result
Definition:
anc_great_ledger.inc.php:26
$list
$list
Definition:
anc_history.inc.php:12
$_GET
$_GET['qcode']
Definition:
category_followup.inc.php:53
Anc_Listing
manage the CA listing
Definition:
anc_listing.class.php:33