forked from atkphpframework/achievo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual.php
More file actions
34 lines (23 loc) · 883 Bytes
/
manual.php
File metadata and controls
34 lines (23 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
$config_atkroot = "./";
include_once("atk.inc");
atksession();
atksecure();
require "theme.inc";
$page = &atkinstance("atk.ui.atkpage");
$ui = &atkinstance("atk.ui.atkui");
$theme = &atkTheme::getInstance();
$output = &atkOutput::getInstance();
$page->register_style($theme->stylePath("style.css"));
$tmp_output='
<br><br><br><br><br>
At some point, in the very, very distant future, a complete annotated reference manual will be present on this page.
<br><br>For now, you can use <a href="manual/guide.html">this Achievo Guide</a>, graciously contributed by Greg Louis.
<br><br><br><br><br>
';
$box = $ui->renderBox(array("title"=>atkText("app_title"),
"content"=>$tmp_output));
$page->addContent($box);
$output->output($page->render(atkText('app_title'), true));
$output->outputFlush();
?>