repo.or.cz
/
igorcms.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial files for igorcms
[igorcms.git]
/
modules
/
index.php
blob
d1148ff9781e50521d672070f0c9974d6160e128
1
<
?php
2
3
/**
4
* index
5
*
6
* the main page that gets loaded if no module is specified
7
*/
8
class
m_index
9
{
10
public function
main
(
$args
)
11
{
12
global
$template
;
13
14
$template
->
assign
(
array
(
15
'TEST'
=>
request_var
(
'test'
,
''
),
16
));
17
18
$template
->
display
(
'index_main.html'
);
19
}
20
}