mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
some bugfixes:
- tab-widgets can be edited (new editor lost template content and onclick_handler, if looping) - select widgets accept again options via $sel_options[$name] $name is the name of the widget and not the form_name - grid-options get loaded again via the old editor
This commit is contained in:
parent
51fa973640
commit
717f53ece2
@ -131,7 +131,7 @@
|
||||
);
|
||||
foreach(explode(',',$this->etemplate->size) as $n => $opt)
|
||||
{
|
||||
$content['options'][$opt] = $options[$n];
|
||||
$content['options'][$this->options[$n]] = $opt;
|
||||
}
|
||||
$cols_spanned = array();
|
||||
reset($this->etemplate->data);
|
||||
@ -1708,7 +1708,7 @@
|
||||
$editor->exec('etemplate.editor.widget',$content,array(
|
||||
'type' => array_merge($this->etemplate->types,$this->extensions),
|
||||
'align' => $this->aligns,
|
||||
'grid_row[valign]' => $this->valigns,
|
||||
'valign' => $this->valigns,
|
||||
'edit_menu' => $this->edit_menu,
|
||||
'box_menu' => $this->box_menu,
|
||||
'row_menu' => $this->row_menu,
|
||||
|
@ -308,6 +308,8 @@
|
||||
$this->lang = '';
|
||||
}
|
||||
$this->tpls_in_file = is_array($name) ? $name['tpls_in_file'] : 0;
|
||||
|
||||
if (is_array($name) && $name['onclick_handler']) $this->onclick_handler = $name['onclick_handler'];
|
||||
|
||||
if (is_array($name) && isset($name['data']))
|
||||
{
|
||||
@ -652,9 +654,10 @@
|
||||
* Calls it self recursivly for arrays / the rows
|
||||
*
|
||||
* @param array $arr the array to compress
|
||||
* @param boolean $remove_all_objs if true unset all objs, on false use as_array to save only the data of objs
|
||||
* @return array
|
||||
*/
|
||||
function compress_array($arr)
|
||||
function compress_array($arr,$remove_objs=false)
|
||||
{
|
||||
if (!is_array($arr))
|
||||
{
|
||||
@ -664,7 +667,11 @@
|
||||
{
|
||||
if (is_array($val))
|
||||
{
|
||||
$arr[$key] = $this->compress_array($val);
|
||||
$arr[$key] = $this->compress_array($val,$remove_objs);
|
||||
}
|
||||
elseif (!$remove_objs && $key == 'obj' && is_object($val) && method_exists($val,'as_array'))
|
||||
{
|
||||
$arr['obj'] = $val->as_array(2);
|
||||
}
|
||||
elseif ($val == '' || is_object($val))
|
||||
{
|
||||
@ -705,7 +712,7 @@
|
||||
if ($data_too > 0)
|
||||
{
|
||||
$arr[$db_keys ? $db_col : $col] = $data_too < 2 ? $this->children :
|
||||
serialize($this->compress_array($this->children));
|
||||
serialize($this->compress_array($this->children,$db_keys));
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -717,6 +724,10 @@
|
||||
{
|
||||
$arr['tpls_in_file'] = $this->tpls_in_file;
|
||||
}
|
||||
if ($data_too != -1 && $this->onclick_handler && !$db_keys)
|
||||
{
|
||||
$arr['onclick_handler'] = $this->onclick_handler;
|
||||
}
|
||||
return $arr;
|
||||
}
|
||||
|
||||
|
@ -156,7 +156,40 @@
|
||||
$GLOBALS['phpgw']->xslttpl->set_var('phpgw',array('java_script' => $GLOBALS['phpgw_info']['flags']['java_script'].$this->include_java_script(2)));
|
||||
}
|
||||
|
||||
$id = $this->save_appsession($this->as_array(1) + array(
|
||||
if ((int) $output_mode != 1) // NOT returning html
|
||||
{
|
||||
if (!$this->xslt)
|
||||
{
|
||||
if (!@$GLOBALS['phpgw_info']['etemplate']['hooked'])
|
||||
{
|
||||
if((int) $output_mode != 2)
|
||||
{
|
||||
echo parse_navbar();
|
||||
}
|
||||
else
|
||||
{
|
||||
echo '<div id="divMain">'."\n";
|
||||
}
|
||||
}
|
||||
echo $GLOBALS['phpgw_info']['etemplate']['hook_content'].$html;
|
||||
|
||||
if (!@$GLOBALS['phpgw_info']['etemplate']['hooked'] &&
|
||||
(!isset($_GET['menuaction']) || strstr($_SERVER['PHP_SELF'],'process_exec.php')))
|
||||
{
|
||||
if((int) $output_mode == 2)
|
||||
{
|
||||
echo "</div>\n";
|
||||
}
|
||||
$GLOBALS['phpgw']->common->phpgw_footer();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// need to add some logic here to support popups (output_mode==2) for xslt, but who cares ...
|
||||
$GLOBALS['phpgw']->xslttpl->set_var('phpgw',array('body_data' => $html));
|
||||
}
|
||||
}
|
||||
$this->save_appsession($this->as_array(2) + array(
|
||||
'readonlys' => $readonlys,
|
||||
'content' => $content,
|
||||
'changes' => $changes,
|
||||
@ -176,36 +209,6 @@
|
||||
{
|
||||
return $html;
|
||||
}
|
||||
if (!$this->xslt)
|
||||
{
|
||||
if (!@$GLOBALS['phpgw_info']['etemplate']['hooked'])
|
||||
{
|
||||
if((int) $output_mode != 2)
|
||||
{
|
||||
echo parse_navbar();
|
||||
}
|
||||
else
|
||||
{
|
||||
echo '<div id="divMain">'."\n";
|
||||
}
|
||||
}
|
||||
echo $GLOBALS['phpgw_info']['etemplate']['hook_content'].$html;
|
||||
|
||||
if (!@$GLOBALS['phpgw_info']['etemplate']['hooked'] &&
|
||||
(!isset($_GET['menuaction']) || strstr($_SERVER['PHP_SELF'],'process_exec.php')))
|
||||
{
|
||||
if((int) $output_mode == 2)
|
||||
{
|
||||
echo "</div>\n";
|
||||
}
|
||||
$GLOBALS['phpgw']->common->phpgw_footer();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// need to add some logic here to support popups (output_mode==2) for xslt, but who cares ...
|
||||
$GLOBALS['phpgw']->xslttpl->set_var('phpgw',array('body_data' => $html));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -870,6 +873,13 @@
|
||||
echo "<p>Object in Name in tpl '$this->name': "; _debug_array($grid);
|
||||
}
|
||||
$obj_read = 'already loaded';
|
||||
if (is_array($cell['obj']))
|
||||
{
|
||||
$obj =& new etemplate();
|
||||
$obj->init($cell['obj']);
|
||||
$cell['obj'] =& $obj;
|
||||
unset($obj);
|
||||
}
|
||||
if (!is_object($cell['obj']))
|
||||
{
|
||||
if ($cell['name'][0] == '@')
|
||||
@ -954,16 +964,20 @@
|
||||
{
|
||||
$sels += $sel_options[$name];
|
||||
}
|
||||
elseif (count($name_parts))
|
||||
else
|
||||
{
|
||||
$org_name = $name_parts[count($name_parts)-1];
|
||||
if (isset($sel_options[$org_name]) && is_array($sel_options[$org_name]))
|
||||
$name_parts = explode('[',str_replace(']','',$name));
|
||||
if (count($name_parts))
|
||||
{
|
||||
$sels += $sel_options[$org_name];
|
||||
}
|
||||
elseif (isset($sel_options[$name_parts[0]]) && is_array($sel_options[$name_parts[0]]))
|
||||
{
|
||||
$sels += $sel_options[$name_parts[0]];
|
||||
$org_name = $name_parts[count($name_parts)-1];
|
||||
if (isset($sel_options[$org_name]) && is_array($sel_options[$org_name]))
|
||||
{
|
||||
$sels += $sel_options[$org_name];
|
||||
}
|
||||
elseif (isset($sel_options[$name_parts[0]]) && is_array($sel_options[$name_parts[0]]))
|
||||
{
|
||||
$sels += $sel_options[$name_parts[0]];
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($content["options-$name"]))
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user