forked from extern/egroupware
More formatting
This commit is contained in:
parent
321fe4def2
commit
b872330d12
25
about.php
25
about.php
@ -14,26 +14,36 @@
|
|||||||
$phpgw_info["flags"]["currentapp"] = "about";
|
$phpgw_info["flags"]["currentapp"] = "about";
|
||||||
include("header.inc.php");
|
include("header.inc.php");
|
||||||
|
|
||||||
if ($app) {
|
if ($app)
|
||||||
|
{
|
||||||
$included = $phpgw->common->hook_single("about",$app);
|
$included = $phpgw->common->hook_single("about",$app);
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
$api_only = True;
|
$api_only = True;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tpl = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('phpgwapi'));
|
$tpl = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('phpgwapi'));
|
||||||
$tpl->set_file(array("phpgw_about" => "about.tpl",
|
$tpl->set_file(array(
|
||||||
|
"phpgw_about" => "about.tpl",
|
||||||
"phpgw_about_unknown" => "about_unknown.tpl"
|
"phpgw_about_unknown" => "about_unknown.tpl"
|
||||||
));
|
));
|
||||||
|
|
||||||
$tpl->set_var("webserver_url",$phpgw->common->get_image_path('phpgwapi'));
|
$tpl->set_var("webserver_url",$phpgw->common->get_image_path('phpgwapi'));
|
||||||
$tpl->set_var("phpgw_version","phpGroupWare API version " . $phpgw_info["server"]["versions"]["phpgwapi"]);
|
$tpl->set_var("phpgw_version","phpGroupWare API version " . $phpgw_info["server"]["versions"]["phpgwapi"]);
|
||||||
if ($included) {
|
if ($included)
|
||||||
|
{
|
||||||
$tpl->set_var("phpgw_app_about",about_app("",""));
|
$tpl->set_var("phpgw_app_about",about_app("",""));
|
||||||
//about_app($tpl,"phpgw_app_about");
|
//about_app($tpl,"phpgw_app_about");
|
||||||
} else {
|
}
|
||||||
if ($api_only) {
|
else
|
||||||
|
{
|
||||||
|
if ($api_only)
|
||||||
|
{
|
||||||
$tpl->set_var("phpgw_app_about","");
|
$tpl->set_var("phpgw_app_about","");
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
$tpl->set_var("app_header",$app);
|
$tpl->set_var("app_header",$app);
|
||||||
$tpl->parse("phpgw_app_about","phpgw_about_unknown");
|
$tpl->parse("phpgw_app_about","phpgw_about_unknown");
|
||||||
}
|
}
|
||||||
@ -41,5 +51,4 @@
|
|||||||
|
|
||||||
$tpl->pparse("out","phpgw_about");
|
$tpl->pparse("out","phpgw_about");
|
||||||
$phpgw->common->phpgw_footer();
|
$phpgw->common->phpgw_footer();
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user