egroupware/etemplate/inc/class.tab_widget.inc.php

117 lines
3.8 KiB
PHP
Raw Normal View History

2002-06-09 23:36:37 +02:00
<?php
/**************************************************************************\
* phpGroupWare - eTemplate Extension - Tab Widget *
* http://www.phpgroupware.org *
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
* -------------------------------------------- *
* This program 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. *
\**************************************************************************/
/* $Id$ */
/*!
@class tab_widget
@author ralfbecker
2002-06-09 23:36:37 +02:00
@abstract widget that shows one row of tabs and an other row with the eTemplate of the selected tab
@discussion see the example in 'etemplate.tab_widget.test' (use show to view it)
@discussion This widget is independent of the UI as it only uses etemplate-widgets and has therefor no render-function
2002-06-09 23:36:37 +02:00
*/
class tab_widget
{
var $public_functions = array(
'pre_process' => True,
'post_process' => True
);
var $human_name = 'Tabs'; // this is the name for the editor
function tab_widget($ui)
{
}
function pre_process($form_name,&$value,&$cell,&$readonlys,&$extension_data,&$tmpl)
2002-06-09 23:36:37 +02:00
{
$labels = explode('|',$cell['label']);
$helps = explode('|',$cell['help']);
$names = explode('|',$cell['name']);
$tabs = new etemplate();
$tab = new etemplate('etemplate.tab_widget.tab');
$tab_active = new etemplate('etemplate.tab_widget.tab_active');
2002-06-09 23:36:37 +02:00
$tabs->init('*** generated tabs','','',0,'',0,0); // make an empty template
2002-06-09 23:36:37 +02:00
$tab_row = array(); // generate the tab row
2002-06-09 23:36:37 +02:00
while (list($k,$name) = each($names))
{
$tcell = $tabs->empty_cell();
if ($extension_data == $name)
2002-06-09 23:36:37 +02:00
{
// save selected tab in persistent extension_data to use it in post_process
$selected_tab = $name;
$tcell['obj'] = &$tab_active;
$tcell['name'] = $tab_active->name;
2002-06-09 23:36:37 +02:00
}
else
{
$tcell['obj'] = &$tab;
$tcell['name'] = $tab->name;
}
$tcell['type'] = 'template';
$tcell['size'] = $cell['name']/*form_name*/.'['.$name.']';
$value[$name] = array(
'name' => $name,
'label' => $labels[$k],
'help' => $helps[$k]
);
$tab_row[$tabs->num2chrs($k)] = $tcell;
2002-06-09 23:36:37 +02:00
}
// add one empty cell to take all the space of the row
$tab_row[$k = $tabs->num2chrs(sizeof($tab_row))] = $tabs->empty_cell();
$tabs->data[0][$k] = '99%'; // width
$tabs->data[0]['c1'] = ',bottom';
2002-06-09 23:36:37 +02:00
if (!isset($selected_tab))
{
$tab_row['A']['obj'] = &$tab_active;
$tcell['name'] = $tab_active->name;
$extension_data = $selected_tab = $names[0];
2002-06-09 23:36:37 +02:00
}
$tabs->data[1] = $tab_row;
$tabs->rows = 1;
$tabs->cols = sizeof($tab_row);
$tabs->size = ',,,,0';
2002-06-09 23:36:37 +02:00
$tab_widget = new etemplate('etemplate.tab_widget');
$tab_widget->set_cell_attribute('@tabs','obj',$tabs);
if ($tmpl->tpls_in_file > 1)
$tab_widget->set_cell_attribute('@body','obj',new etemplate($selected_tab,$tmpl->as_array()));
else
$tab_widget->set_cell_attribute('@body','name',$selected_tab);
2002-06-09 23:36:37 +02:00
$cell['type'] = 'template';
$cell['obj'] = &$tab_widget;
2002-06-09 23:36:37 +02:00
$cell['label'] = $cell['help'] = '';
return False; // NO extra Label
2002-06-09 23:36:37 +02:00
}
function post_process($name,&$value,&$extension_data,&$loop,&$tmpl)
2002-06-09 23:36:37 +02:00
{
//echo "<p>tab_widget::post_process($name): value = "; _debug_array($value);
if (is_array($value))
{
reset($value);
list($tab,$button) = each($value);
list(,$button) = each($button);
if ($button)
{
$extension_data = $tab;
$loop = True;
}
}
2002-06-09 23:36:37 +02:00
return True;
}
}