forked from atkphpframework/achievo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
top.php
81 lines (67 loc) · 2.62 KB
/
top.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* This file is part of the Achievo ATK distribution.
* Detailed copyright and licensing information can be found
* in the doc/COPYRIGHT and doc/LICENSE files which should be
* included in the distribution.
*
* This file is the skeleton top frame file, which you can copy
* to your application dir and modify if necessary. By default,
* it displays the currently logged-in user and a logout link.
*
* @package atk
* @subpackage skel
*
* @author Ivo Jansch <[email protected]>
*
* @copyright (c)2000-2004 Ibuildings.nl BV
* @license http://www.achievo.org/atk/licensing ATK Open Source License
*
* @version $Revision$
* $Id$
*/
/**
* @internal includes.
*/
$config_atkroot = "./";
include_once("atk.inc");
include_once("achievotools.inc");
atksession();
atksecure();
require("theme.inc");
$page = &atkinstance("atk.ui.atkpage");
$page->unregister_all_scripts();
$ui = &atkinstance("atk.ui.atkui");
$theme = &atkTheme::getInstance();
$output = &atkOutput::getInstance();
$page->register_style($theme->stylePath("style.css"));
$page->register_stylecode("form{display: inline;}");
$page->register_style($theme->stylePath("top.css"));
//Backwards compatible $content, that is what will render when the box.tpl is used instead of a top.tpl
$username = getFullUsername();
$loggedin = atktext("logged_in_as", "atk").": <b>".$username."</b>";
$content = '<br>'.$loggedin.' <a href="index.php?atklogout=1" target="_top">'.ucfirst(atktext("logout", "atk")).'</a> ';
$centerpiece = "";
$centerpiecelinks=array();
getCenterPiece($centerpiece,$centerpiecelinks);
$content.=$centerpiece;
$searchpiece = getSearchPiece();
$content.=" ".$searchpiece;
$title = getAchievoTitle();
$top = $ui->renderBox(array("content"=> $content,
"logintext" => atktext("logged_in_as"),
"logouttext" => ucfirst(atktext("logout", "atk")),
"logoutlink" => "index.php?atklogout=1",
"logouttarget" => "_top",
"centerpiece" => $centerpiece,
"centerpiece_links" => $centerpiecelinks,
"searchpiece" => $searchpiece,
"title" => $title,
"user" => $username,
"username"=>$username,
),
"top");
$page->addContent($top);
$output->output($page->render(atktext("app_title"), true));
$output->outputFlush();
?>