mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-19 22:43:22 +01:00
257 lines
7.0 KiB
PHP
257 lines
7.0 KiB
PHP
|
<?php
|
||
|
/*******************************************************************\
|
||
|
* phpGroupWare API - help system manager *
|
||
|
* Written by Bettina Gille [ceb@phpgroupware.org] *
|
||
|
* Manager for the phpGroupWare help system *
|
||
|
* Copyright (C) 2002 Bettina Gille *
|
||
|
* ----------------------------------------------------------------- *
|
||
|
* This library is part of the phpGroupWare API *
|
||
|
* http://www.phpgroupware.org/theapi *
|
||
|
* ----------------------------------------------------------------- *
|
||
|
* This library is free software; you can redistribute it and/or *
|
||
|
* modify it under the terms of the GNU General Public License as *
|
||
|
* published by the Free Software Foundation; either version 2 of *
|
||
|
* the License, or (at your option) any later version. *
|
||
|
* *
|
||
|
* This program is distributed in the hope that it will be useful, *
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
||
|
* General Public License for more details. *
|
||
|
* *
|
||
|
* You should have received a copy of the GNU General Public License *
|
||
|
* along with this program; if not, write to the Free Software *
|
||
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
||
|
\*******************************************************************/
|
||
|
/* $Id$ */
|
||
|
|
||
|
class help
|
||
|
{
|
||
|
var $lang;
|
||
|
var $app_name;
|
||
|
var $app_id;
|
||
|
var $up;
|
||
|
var $down;
|
||
|
var $close;
|
||
|
var $question;
|
||
|
var $edit;
|
||
|
|
||
|
var $extrabox;
|
||
|
var $xextrabox;
|
||
|
var $listbox;
|
||
|
|
||
|
var $output;
|
||
|
var $data;
|
||
|
|
||
|
var $title;
|
||
|
|
||
|
/* This is the constructor for the object. */
|
||
|
|
||
|
function help($reset = False)
|
||
|
{
|
||
|
$this->lang = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
|
||
|
$this->title = '';
|
||
|
$this->app_name = '';
|
||
|
$this->app_id = 0;
|
||
|
|
||
|
$this->up = '';
|
||
|
$this->down = '';
|
||
|
$this->close = '';
|
||
|
$this->question = '';
|
||
|
$this->edit = '';
|
||
|
|
||
|
$this->extrabox = '';
|
||
|
$this->xextrabox = '';
|
||
|
$this->listbox = '';
|
||
|
$this->data = array();
|
||
|
|
||
|
if (!$reset)
|
||
|
{
|
||
|
$this->output = array();
|
||
|
}
|
||
|
$GLOBALS['phpgw']->xslttpl->add_file('help');
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Use these functions to get and set the values of this
|
||
|
object's variables. This is good OO practice, as it means
|
||
|
that datatype checking can be completed and errors raised accordingly.
|
||
|
*/
|
||
|
function setvar($var,$value='')
|
||
|
{
|
||
|
if ($value=='')
|
||
|
{
|
||
|
global $$var;
|
||
|
$value = $$var;
|
||
|
}
|
||
|
$this->$var = $value;
|
||
|
// echo $var." = ".$this->$var."<br>\n";
|
||
|
}
|
||
|
|
||
|
function getvar($var='')
|
||
|
{
|
||
|
if ($var=='' || !isset($this->$var))
|
||
|
{
|
||
|
echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!<br>'."\n";
|
||
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||
|
exit;
|
||
|
}
|
||
|
//echo "Var = ".$var."<br>\n";
|
||
|
//echo $var." = ".$this->$var."<br>\n";
|
||
|
return $this->$var;
|
||
|
}
|
||
|
|
||
|
function start_template($extra = '')
|
||
|
{
|
||
|
if ($extra && $this->app_name)
|
||
|
{
|
||
|
$GLOBALS['phpgw']->xslttpl->add_file($GLOBALS['phpgw']->common->get_tpl_dir($this->app_name,'default') . SEP . 'extrahelp');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function set_controls($control='',$control_param='')
|
||
|
{
|
||
|
//echo '<br>Control: ' . $control . ', control_param="' . $control_param . '"';
|
||
|
|
||
|
if($control != '' && is_array($control_param))
|
||
|
{
|
||
|
$this->setvar($control,$GLOBALS['phpgw']->link($control_param['url'],'app='.$control_param['app'].'&control='.$control));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function set_internal($extra_data = '')
|
||
|
{
|
||
|
if($extra_data !='')
|
||
|
{
|
||
|
$this->extrabox = $extra_data;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function set_xinternal($extra_data='')
|
||
|
{
|
||
|
if($extra_data !='')
|
||
|
{
|
||
|
$this->xextrabox = $extra_data;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function draw_box()
|
||
|
{
|
||
|
if($this->up || $this->down || $this->close || $this->question || $this->edit)
|
||
|
{
|
||
|
$control_array = array
|
||
|
(
|
||
|
'up',
|
||
|
'down',
|
||
|
'question',
|
||
|
'close',
|
||
|
'edit'
|
||
|
);
|
||
|
@reset($control_array);
|
||
|
while(list($key,$param) = each($control_array))
|
||
|
{
|
||
|
if(isset($this->$param) && $this->$param)
|
||
|
{
|
||
|
$image_width = 15;
|
||
|
if($param == 'edit')
|
||
|
{
|
||
|
$image_width = 30;
|
||
|
}
|
||
|
|
||
|
$control_link[] = array
|
||
|
(
|
||
|
'param_url' => $this->$param,
|
||
|
'link_img' => $GLOBALS['phpgw']->common->image('phpgwapi',$param.'.button'),
|
||
|
'img_width' => $image_width,
|
||
|
'lang_param_statustext' => lang($param)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$this->output['help_data'][] = array
|
||
|
(
|
||
|
'title' => $this->title,
|
||
|
'control_link' => $control_link,
|
||
|
'listbox' => $this->listbox,
|
||
|
'extrabox' => $this->extrabox,
|
||
|
'xextrabox' => $this->xextrabox
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function check_file($file)
|
||
|
{
|
||
|
$check_file = PHPGW_SERVER_ROOT . $file;
|
||
|
|
||
|
if(@is_file($check_file))
|
||
|
{
|
||
|
return $file;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function check_help_file($file)
|
||
|
{
|
||
|
$lang = strtoupper($this->lang);
|
||
|
|
||
|
$help_file = $this->check_file('/' . $this->app_name . '/help/'. $lang . '/' . $file);
|
||
|
|
||
|
if($help_file == '')
|
||
|
{
|
||
|
$help_file = $this->check_file('/' . $this->app_name . '/help/EN/' . $file);
|
||
|
}
|
||
|
|
||
|
if ($help_file)
|
||
|
{
|
||
|
return $GLOBALS['phpgw']->link($help_file);
|
||
|
}
|
||
|
|
||
|
return False;
|
||
|
}
|
||
|
|
||
|
/*function display_manual_section($appname,$file)
|
||
|
{
|
||
|
$font = $GLOBALS['phpgw_info']['theme']['font'];
|
||
|
$navbar = $GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'];
|
||
|
$lang = strtoupper($GLOBALS['phpgw_info']['user']['preferences']['common']['lang']);
|
||
|
$GLOBALS['treemenu'][] = '..'.($navbar != 'text'?'<img src="'.$GLOBALS['phpgw']->common->image($appname,'navbar').'" border="0" alt="'.ucwords($appname).'">':'').($navbar != 'icons'?'<font face="'.$font.'">'.lang($appname).'</font>':'').'|'.$GLOBALS['phpgw']->link('/'.$appname.'/help/index.php');
|
||
|
|
||
|
$help_file = check_help_file($appname,$lang,$appname.'.php');
|
||
|
if($help_file != '')
|
||
|
{
|
||
|
$GLOBALS['treemenu'][] = '...<font face="'.$font.'">'.lang('Overview').'</font>|'.$GLOBALS['phpgw']->link($help_file);
|
||
|
}
|
||
|
while(list($title,$filename) = each($file))
|
||
|
{
|
||
|
$help_file = check_help_file($appname,$lang,$filename);
|
||
|
if($help_file != '')
|
||
|
{
|
||
|
$GLOBALS['treemenu'][] = '...<font face="'.$font.'">'.lang($title).'</font>|'.$GLOBALS['phpgw']->link($help_file);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function show_menu($expandlevels)
|
||
|
{
|
||
|
$menutree = CreateObject('phpgwapi.menutree','text');
|
||
|
$menutree->set_lcs(300);
|
||
|
|
||
|
$str = '<table cellpadding="10" width="20%"><td>';
|
||
|
$str .= '<font face="'.$GLOBALS['phpgw_info']['theme']['font'].'" size="2">';
|
||
|
$str .= 'Note: Some of this information is out of date<br>';
|
||
|
|
||
|
$GLOBALS['treemenu'] = Array();
|
||
|
|
||
|
$GLOBALS['phpgw']->hooks->process('manual',array('manual','preferences'));
|
||
|
|
||
|
reset($GLOBALS['treemenu']);
|
||
|
|
||
|
$str .= $menutree->showtree($GLOBALS['treemenu'],$expandlevels).'</td></table>';
|
||
|
|
||
|
return $str;
|
||
|
}*/
|
||
|
}
|
||
|
?>
|