lang = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang']; $this->title = ''; $this->app_name = ''; $this->app_version = ''; $this->app_id = 0; $this->up = ''; $this->down = ''; $this->intro = ''; $this->app_intro = ''; $this->note = ''; $this->extrabox = ''; $this->xhelp = ''; $this->listbox = ''; $this->data = array(); if (!$reset) { $this->output = array(); } $GLOBALS['phpgw']->xslttpl->add_file($GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . '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."
\n"; } function getvar($var='') { if ($var=='' || !isset($this->$var)) { echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!
'."\n"; $GLOBALS['phpgw_info']['flags']['nodisplay'] = True; exit; } //echo "Var = ".$var."
\n"; //echo $var." = ".$this->$var."
\n"; return $this->$var; } function start_template() { if ($this->app_name) { $GLOBALS['phpgw']->xslttpl->add_file($GLOBALS['phpgw']->common->get_tpl_dir($this->app_name,'default') . SEP . 'help_data'); } } function set_controls($type = 'app', $control='', $control_url='') { switch($type) { case 'app': if($control != '' && $control_url != '') { $this->setvar($control,$this->check_help_file($control_url)); } break; default: $this->setvar('intro',$GLOBALS['phpgw']->link('/help.php')); $this->setvar('app_intro',$GLOBALS['phpgw']->link('/help.php','app=' . $this->app_name)); $this->setvar('note',$GLOBALS['phpgw']->link('/help.php','note=True')); break; } } function set_internal($extra_data = '') { if($extra_data !='') { $this->extrabox = $extra_data; } } function set_xinternal($extra_data='') { if($extra_data !='') { $this->xhelp = $extra_data; } } function draw_box() { $control_array = array ( 'intro' => True ); if($this->app_intro) { $control_array['app_intro'] = True; } if($this->up) { $control_array['up'] = True; } if($this->down) { $control_array['down'] = True; } $control_array['note'] = True; //_debug_array($control_array); @reset($control_array); while(list($param,$value) = each($control_array)) { if(isset($this->$param) && $this->$param) { $image_width = 15; $control_link[] = array ( 'param_url' => $this->$param, 'link_img' => $GLOBALS['phpgw']->common->image('phpgwapi',$param.'_help'), 'img_width' => $image_width, 'lang_param_title' => lang($param) ); } } if ($this->app_name == 'manual') { $logo_img = $GLOBALS['phpgw']->common->image('phpgwapi','logo','',True); } else { $logo_img = $GLOBALS['phpgw']->common->image($this->app_name,'navbar','',True); } $this->output['help_values'][] = array ( 'img' => $logo_img, 'title' => $this->title, 'lang_version' => lang('version'), 'version' => $this->app_version, 'control_link' => $control_link, 'listbox' => $this->listbox, 'extrabox' => $this->extrabox, 'xhelp' => $this->xhelp ); } 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'?''.ucwords($appname).'':'').($navbar != 'icons'?''.lang($appname).'':'').'|'.$GLOBALS['phpgw']->link('/'.$appname.'/help/index.php'); $help_file = check_help_file($appname,$lang,$appname.'.php'); if($help_file != '') { $GLOBALS['treemenu'][] = '...'.lang('Overview').'|'.$GLOBALS['phpgw']->link($help_file); } while(list($title,$filename) = each($file)) { $help_file = check_help_file($appname,$lang,$filename); if($help_file != '') { $GLOBALS['treemenu'][] = '...'.lang($title).'|'.$GLOBALS['phpgw']->link($help_file); } } } function show_menu($expandlevels) { $menutree = CreateObject('phpgwapi.menutree','text'); $menutree->set_lcs(300); $str = '
'; $str .= ''; $str .= 'Note: Some of this information is out of date
'; $GLOBALS['treemenu'] = Array(); $GLOBALS['phpgw']->hooks->process('manual',array('manual','preferences')); reset($GLOBALS['treemenu']); $str .= $menutree->showtree($GLOBALS['treemenu'],$expandlevels).'
'; return $str; }*/ } ?>