2002-02-06 10:03:11 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2003-12-10 02:21:31 +01:00
|
|
|
* eGroupWare - eTemplates - Editor *
|
|
|
|
* http://www.eGroupWare.org *
|
2002-02-06 10:03:11 +01:00
|
|
|
* 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$ */
|
|
|
|
|
2005-02-13 14:03:36 +01:00
|
|
|
/**
|
|
|
|
* template editor of the eTemplate package
|
|
|
|
*
|
|
|
|
* @package etemplate
|
2005-02-22 23:11:00 +01:00
|
|
|
* @subpackage tools
|
2005-02-13 14:03:36 +01:00
|
|
|
* @author RalfBecker-AT-outdoor-training.de
|
|
|
|
* @license GPL
|
|
|
|
*/
|
2002-02-06 10:03:11 +01:00
|
|
|
class editor
|
|
|
|
{
|
|
|
|
var $debug;
|
|
|
|
var $etemplate; // eTemplate we edit
|
|
|
|
var $editor; // editor eTemplate
|
2002-05-13 23:30:46 +02:00
|
|
|
var $aligns = array(
|
|
|
|
'' => 'Left',
|
|
|
|
'right' => 'Right',
|
2005-02-18 23:44:42 +01:00
|
|
|
'center' => 'Center',
|
|
|
|
);
|
|
|
|
var $valigns = array(
|
|
|
|
'' => 'Middle',
|
|
|
|
'top' => 'Top',
|
|
|
|
'bottom' => 'Bottom',
|
|
|
|
'baseline' => 'Baseline',
|
2002-05-13 23:30:46 +02:00
|
|
|
);
|
2005-02-16 00:22:10 +01:00
|
|
|
var $edit_menu = array(
|
|
|
|
'delete' => 'delete',
|
|
|
|
'cut' => 'cut',
|
|
|
|
'copy' => 'copy',
|
|
|
|
'paste' => 'paste',
|
|
|
|
'swap' => 'swap',
|
|
|
|
);
|
2005-02-18 23:44:42 +01:00
|
|
|
var $row_menu = array(
|
|
|
|
'row_delete' => 'delete this row',
|
|
|
|
'row_insert_above' => 'insert a row above',
|
|
|
|
'row_insert_below' => 'insert a row below',
|
|
|
|
'row_swap_next' => 'swap with next row',
|
|
|
|
);
|
|
|
|
var $column_menu = array(
|
|
|
|
'column_delete' => 'delete this column',
|
|
|
|
'column_insert_before' => 'insert a column before',
|
|
|
|
'column_insert_behind' => 'insert a column behind',
|
|
|
|
'column_swap_next' => 'swap with next column',
|
2005-02-16 00:22:10 +01:00
|
|
|
);
|
|
|
|
var $box_menu = array(
|
|
|
|
'box_insert_before' => 'insert a widget before',
|
|
|
|
'box_insert_behind' => 'insert a widget behind',
|
|
|
|
'box_swap_next' => 'swap widget with next one',
|
|
|
|
);
|
2002-09-29 15:01:40 +02:00
|
|
|
var $options = array(
|
|
|
|
'width',
|
|
|
|
'height',
|
|
|
|
'border',
|
|
|
|
'class',
|
2002-10-03 15:24:45 +02:00
|
|
|
'spacing',
|
2002-09-29 15:01:40 +02:00
|
|
|
'padding',
|
|
|
|
'overflow'
|
|
|
|
);
|
|
|
|
var $overflows = array(
|
|
|
|
'' => 'visible',
|
|
|
|
'hidden' => 'hidden',
|
|
|
|
'scroll' => 'scroll',
|
|
|
|
'auto' => 'auto'
|
|
|
|
);
|
2005-02-20 22:45:24 +01:00
|
|
|
var $onclick_types = array(
|
2005-05-07 16:05:10 +02:00
|
|
|
'' => 'nothing',
|
2005-02-20 22:45:24 +01:00
|
|
|
'confirm' => 'confirm',
|
2005-05-07 16:05:10 +02:00
|
|
|
'popup' => 'popup',
|
|
|
|
'custom' => 'custom',
|
2005-02-20 22:45:24 +01:00
|
|
|
);
|
2002-05-13 23:30:46 +02:00
|
|
|
var $extensions = '';
|
2002-02-06 10:03:11 +01:00
|
|
|
|
|
|
|
var $public_functions = array
|
|
|
|
(
|
2005-02-20 22:45:24 +01:00
|
|
|
'edit' => True,
|
2005-02-16 00:22:10 +01:00
|
|
|
'widget' => True,
|
2005-02-22 22:02:26 +01:00
|
|
|
'styles' => True,
|
2002-02-06 10:03:11 +01:00
|
|
|
);
|
|
|
|
|
2003-08-08 18:20:16 +02:00
|
|
|
function editor()
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
$this->etemplate =& CreateObject('etemplate.etemplate');
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2005-02-16 00:22:10 +01:00
|
|
|
$this->extensions = $GLOBALS['phpgw']->session->appsession('extensions','etemplate');
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
|
2005-02-06 19:12:26 +01:00
|
|
|
function export_xml(&$xml,&$xml_label)
|
2002-09-12 02:35:20 +02:00
|
|
|
{
|
|
|
|
$name = $this->etemplate->name;
|
|
|
|
$template = $this->etemplate->template != '' ? $this->etemplate->template : 'default';
|
|
|
|
|
|
|
|
list($app) = explode('.',$name);
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
if (!is_object($this->etemplate->xul_io))
|
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
$this->etemplate->xul_io =& CreateObject('etemplate.xul_io');
|
2005-02-18 23:44:42 +01:00
|
|
|
}
|
|
|
|
$xml = $this->etemplate->xul_io->export($this->etemplate);
|
|
|
|
|
2002-09-12 02:35:20 +02:00
|
|
|
$dir = PHPGW_SERVER_ROOT . "/$app/templates/$template";
|
2005-02-18 23:44:42 +01:00
|
|
|
if (($create_it = !is_dir($dir)))
|
2002-09-12 02:35:20 +02:00
|
|
|
{
|
|
|
|
$dir = PHPGW_SERVER_ROOT . "/$app/templates";
|
|
|
|
}
|
|
|
|
if (!is_writeable($dir))
|
|
|
|
{
|
2003-08-08 18:20:16 +02:00
|
|
|
return lang("Error: webserver is not allowed to write into '%1' !!!",$dir);
|
2002-09-12 02:35:20 +02:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($create_it)
|
2002-09-12 02:35:20 +02:00
|
|
|
{
|
|
|
|
mkdir($dir .= "/$template");
|
|
|
|
}
|
2002-09-17 15:27:37 +02:00
|
|
|
$file = $dir . '/' . substr($name,strlen($app)+1);
|
2002-09-12 02:35:20 +02:00
|
|
|
if ($this->etemplate->lang)
|
|
|
|
{
|
|
|
|
$file .= '.' . $this->etemplate->lang;
|
|
|
|
}
|
2002-09-30 20:19:50 +02:00
|
|
|
$old_file = $file . '.old.xet';
|
|
|
|
$file .= '.xet';
|
2002-09-12 02:35:20 +02:00
|
|
|
if (file_exists($file))
|
|
|
|
{
|
2003-07-21 18:09:33 +02:00
|
|
|
if (file_exists($old_file))
|
|
|
|
{
|
|
|
|
unlink($old_file);
|
|
|
|
}
|
2002-09-12 02:35:20 +02:00
|
|
|
rename($file,$old_file);
|
|
|
|
}
|
|
|
|
|
2005-02-06 19:12:26 +01:00
|
|
|
if (!($f = fopen($xml_label=$file,'w')))
|
2002-09-12 02:35:20 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2002-09-17 15:27:37 +02:00
|
|
|
if (!is_object($this->etemplate->xul_io))
|
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
$this->etemplate->xul_io =& CreateObject('etemplate.xul_io');
|
2002-09-17 15:27:37 +02:00
|
|
|
}
|
2005-02-06 19:12:26 +01:00
|
|
|
$xml = $this->etemplate->xul_io->export($this->etemplate);
|
2002-09-12 02:35:20 +02:00
|
|
|
|
2005-02-06 19:12:26 +01:00
|
|
|
fwrite($f,$xml);
|
2002-09-12 02:35:20 +02:00
|
|
|
fclose($f);
|
|
|
|
|
2003-08-08 18:20:16 +02:00
|
|
|
return lang("eTemplate '%1' written to '%2'",$name,$file);
|
2002-09-12 12:04:22 +02:00
|
|
|
}
|
|
|
|
|
2005-02-06 19:12:26 +01:00
|
|
|
function import_xml($file,&$xml)
|
2002-09-12 12:04:22 +02:00
|
|
|
{
|
|
|
|
if ($file == 'none' || $file == '' || !($f = fopen($file,'r')))
|
|
|
|
{
|
2005-05-07 16:05:10 +02:00
|
|
|
return lang('no filename given or selected via Browse...')."file='$file'";
|
2002-09-12 12:04:22 +02:00
|
|
|
}
|
2005-02-06 19:12:26 +01:00
|
|
|
$xml = fread ($f, filesize ($file));
|
2002-09-12 12:04:22 +02:00
|
|
|
fclose($f);
|
|
|
|
|
2002-09-17 15:27:37 +02:00
|
|
|
if (!is_object($this->etemplate->xul_io))
|
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
$this->etemplate->xul_io =& CreateObject('etemplate.xul_io');
|
2002-09-17 15:27:37 +02:00
|
|
|
}
|
2005-02-06 19:12:26 +01:00
|
|
|
$imported = $this->etemplate->xul_io->import($this->etemplate,$xml);
|
2002-10-18 00:05:53 +02:00
|
|
|
$this->etemplate->modified = @filemtime($f);
|
2002-09-29 15:01:40 +02:00
|
|
|
$this->etemplate->modified_set = 'xul-import';
|
2002-09-12 12:04:22 +02:00
|
|
|
|
2002-09-24 11:58:07 +02:00
|
|
|
if (is_array($imported))
|
2002-09-12 12:04:22 +02:00
|
|
|
{
|
2002-09-24 11:58:07 +02:00
|
|
|
if (count($imported) == 1)
|
|
|
|
{
|
2003-08-08 18:20:16 +02:00
|
|
|
$imported = lang("eTemplate '%1' imported, use Save to put it in the database",$this->etemplate->name);
|
2002-09-24 11:58:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-08-08 18:20:16 +02:00
|
|
|
$imported = lang('File contains more than one eTemplate, last one is shown !!!');
|
2002-09-24 11:58:07 +02:00
|
|
|
}
|
2002-09-12 12:04:22 +02:00
|
|
|
}
|
2002-09-24 11:58:07 +02:00
|
|
|
return $imported;
|
2002-09-12 02:35:20 +02:00
|
|
|
}
|
|
|
|
|
2005-05-07 16:05:10 +02:00
|
|
|
function list_result($cont='',$msg='')
|
2002-09-04 00:59:47 +02:00
|
|
|
{
|
|
|
|
if ($this->debug)
|
|
|
|
{
|
|
|
|
echo "<p>etemplate.editor.list_result: cont="; _debug_array($cont);
|
|
|
|
}
|
|
|
|
if (!$cont || !is_array($cont))
|
|
|
|
{
|
|
|
|
return $this->edit('error');
|
|
|
|
}
|
2003-12-10 02:21:31 +01:00
|
|
|
if (!isset($cont['result']) || isset($cont['search']))
|
2002-09-04 00:59:47 +02:00
|
|
|
{
|
|
|
|
$cont['result'] = $this->etemplate->search($cont);
|
|
|
|
}
|
|
|
|
$result = $cont['result'];
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2002-09-04 00:59:47 +02:00
|
|
|
if (isset($cont['delete']))
|
|
|
|
{
|
|
|
|
list($delete) = each($cont['delete']);
|
2005-05-07 16:05:10 +02:00
|
|
|
$this->etemplate->init($result[$delete-1]);
|
|
|
|
if ($this->etemplate->delete())
|
|
|
|
{
|
|
|
|
$msg = lang('Template deleted');
|
|
|
|
unset($result[$delete-1]);
|
|
|
|
$result = array_values($result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$msg = lang('Error: Template not found !!!');
|
|
|
|
}
|
2002-09-04 00:59:47 +02:00
|
|
|
}
|
2002-10-28 02:17:32 +01:00
|
|
|
if (isset($cont['delete_selected']))
|
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
foreach($cont['selected'] as $row => $sel)
|
2002-10-28 02:17:32 +01:00
|
|
|
{
|
|
|
|
if ($sel)
|
|
|
|
{
|
2005-05-07 16:05:10 +02:00
|
|
|
$this->etemplate->init($result[$row-1]);
|
|
|
|
if ($this->etemplate->delete())
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
2005-05-07 16:05:10 +02:00
|
|
|
unset($result[$row-1]);
|
|
|
|
++$n;
|
2005-02-20 22:45:24 +01:00
|
|
|
}
|
2002-10-28 02:17:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($n)
|
|
|
|
{
|
2003-08-08 18:20:16 +02:00
|
|
|
$msg = lang('%1 eTemplates deleted',$n);
|
2002-10-28 02:17:32 +01:00
|
|
|
}
|
|
|
|
unset($cont['selected']);
|
|
|
|
unset($cont['delete_selected']);
|
2005-05-07 16:05:10 +02:00
|
|
|
$result = array_values($result);
|
2002-10-28 02:17:32 +01:00
|
|
|
}
|
2002-09-04 00:59:47 +02:00
|
|
|
if (isset($cont['read']))
|
|
|
|
{
|
|
|
|
list($read) = each($cont['read']);
|
2002-10-28 02:17:32 +01:00
|
|
|
$this->etemplate->read($result[$read-1]);
|
2005-02-20 22:45:24 +01:00
|
|
|
$this->edit();
|
2005-02-16 00:22:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2002-09-04 00:59:47 +02:00
|
|
|
if (!$msg)
|
|
|
|
{
|
2003-08-08 18:20:16 +02:00
|
|
|
$msg = lang('%1 eTemplates found',count($result));
|
2002-09-04 00:59:47 +02:00
|
|
|
}
|
|
|
|
unset($cont['result']);
|
|
|
|
if (!isset($cont['name']))
|
|
|
|
{
|
|
|
|
$cont += $this->etemplate->as_array();
|
|
|
|
}
|
|
|
|
$content = $cont + array('msg' => $msg);
|
|
|
|
|
|
|
|
reset($result);
|
|
|
|
for ($row=1; list(,$param) = each($result); ++$row)
|
|
|
|
{
|
|
|
|
$content[$row] = $param;
|
|
|
|
}
|
|
|
|
$list_result = new etemplate('etemplate.editor.list_result');
|
2005-02-06 19:12:26 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('Editable Templates - Search');
|
2002-10-19 13:03:00 +02:00
|
|
|
$list_result->exec('etemplate.editor.list_result',$content,'','',array(
|
|
|
|
'result' => $result,
|
|
|
|
),'');
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
|
2005-02-20 22:45:24 +01:00
|
|
|
/**
|
|
|
|
* new eTemplate editor, which edits widgets in a popup
|
|
|
|
*
|
|
|
|
* @param array $content content from the process_exec call
|
|
|
|
* @param string $msg message to show
|
|
|
|
*/
|
|
|
|
function edit($content=null,$msg = '')
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2002-06-09 23:33:07 +02:00
|
|
|
if ($this->debug)
|
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
echo "<p>etemplate.editor.show: content="; _debug_array($content);
|
2002-06-09 23:33:07 +02:00
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
if (!is_array($content)) $content = array();
|
|
|
|
$preserv = array();
|
|
|
|
|
|
|
|
if ($content['import_xml'])
|
2002-02-17 20:09:15 +01:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
$msg .= $this->import_xml($content['file']['tmp_name'],$xml);
|
|
|
|
//$this->etemplate->echo_tmpl();
|
|
|
|
$xml_label = $content['file']['name'];
|
|
|
|
$preserv['import'] = $this->etemplate->as_array(1);
|
2002-02-17 20:09:15 +01:00
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
elseif (is_array($content['import']) && !$content['read']) // imported not yet saved tmpl
|
2002-10-19 13:03:00 +02:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
$this->etemplate->init($content['import']);
|
|
|
|
$preserv['import'] = $content['import'];
|
2002-10-19 13:03:00 +02:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
elseif ($content['save'])
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$this->etemplate->read($content['old_keys']);
|
2002-09-12 12:58:20 +02:00
|
|
|
|
2005-02-22 22:02:26 +01:00
|
|
|
if (!$this->etemplate->modified_set || !$this->etemplate->modified)
|
2002-09-12 12:58:20 +02:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$this->etemplate->modified = time();
|
|
|
|
}
|
|
|
|
$ok = $this->etemplate->save(trim($content['name']),trim($content['template']),trim($content['lang']),(int) $content['group'],trim($content['version']));
|
|
|
|
$msg = $ok ? lang('Template saved') : lang('Error: while saveing !!!');
|
|
|
|
if ($ok) unset($preserv['import']);
|
|
|
|
}
|
|
|
|
elseif (isset($_GET['name']) || isset($content['name']))
|
|
|
|
{
|
|
|
|
if ($_GET['name'])
|
|
|
|
{
|
|
|
|
foreach($this->etemplate->db_key_cols as $var)
|
2002-09-12 12:58:20 +02:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$content[$var] = $_GET[$var];
|
2002-09-12 12:58:20 +02:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
}
|
|
|
|
if ($content['version'] != '')
|
|
|
|
{
|
|
|
|
$save_version = $content['version'];
|
|
|
|
unset($content['version']);
|
|
|
|
$this->etemplate->read($content);
|
|
|
|
$newest_version = $this->etemplate->version;
|
|
|
|
$content['version'] = $save_version;
|
|
|
|
}
|
|
|
|
if (!$this->etemplate->read($content))
|
|
|
|
{
|
|
|
|
if (isset($content['name']))
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$version_backup = $content['version'];
|
|
|
|
$content['version'] = ''; // trying it without version
|
|
|
|
if ($this->etemplate->read($content))
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$msg = lang('only an other Version found !!!');
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
else
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$result = $this->etemplate->search($content);
|
|
|
|
if (count($result) > 1)
|
|
|
|
{
|
|
|
|
return $this->list_result(array('result' => $result));
|
|
|
|
}
|
|
|
|
elseif (!count($result) || !$this->etemplate->read($result[0]))
|
|
|
|
{
|
|
|
|
$msg = lang('Error: Template not found !!!');
|
|
|
|
$this->etemplate->version = $content['version'] = $version_backup;
|
|
|
|
}
|
|
|
|
elseif ($content['name'] == $result[0]['name'])
|
|
|
|
{
|
|
|
|
$msg = lang('only an other Version found !!!');
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
|
|
|
}
|
2005-05-07 16:05:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$msg = lang('Error: Template not found !!!');
|
|
|
|
}
|
2002-09-12 12:58:20 +02:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
elseif ($newest_version != '' && $this->etemplate->version != $newest_version)
|
|
|
|
{
|
|
|
|
$msg = lang("newer version '%1' exists !!!",$newest_version);
|
|
|
|
}
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
if (!is_array($this->extensions))
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
if (($extensions = $this->scan_for_extensions()))
|
|
|
|
{
|
|
|
|
$msg .= lang('Extensions loaded:') . ' ' . $extensions;
|
|
|
|
$msg_ext_loaded = True;
|
|
|
|
}
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
2002-10-06 02:21:52 +02:00
|
|
|
list($app) = explode('.',$this->etemplate->name);
|
|
|
|
if ($app && $app != 'etemplate')
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->translation->add_app($app); // load translations for app
|
2005-02-20 22:45:24 +01:00
|
|
|
|
|
|
|
if (($extensions = $this->scan_for_extensions($app)))
|
|
|
|
{
|
|
|
|
$msg .= (!$msg_ext_loaded?lang('Extensions loaded:').' ':', ') . $extensions;
|
|
|
|
}
|
2002-10-06 02:21:52 +02:00
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
if (!$msg && $content['delete'])
|
|
|
|
{
|
|
|
|
if (!$content['version'] && $this->etemplate->version)
|
|
|
|
{
|
|
|
|
$this->etemplate->version = ''; // else the newest would get deleted and not the one without version
|
|
|
|
}
|
|
|
|
$ok = $this->etemplate->delete();
|
|
|
|
$msg = $ok ? lang('Template deleted') : lang('Error: Template not found !!!');
|
|
|
|
$preserv['import'] = $this->etemplate->as_array(1); // that way the content can be saved again
|
|
|
|
}
|
|
|
|
elseif ($content['dump'])
|
|
|
|
{
|
|
|
|
if (empty($app) || !@is_dir(PHPGW_SERVER_ROOT.'/'.$app))
|
|
|
|
{
|
|
|
|
$msg .= lang('Application name needed to write a langfile or dump the eTemplates !!!');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$msg .= $this->etemplate->dump4setup($app);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($content['langfile'])
|
|
|
|
{
|
|
|
|
if (empty($app) || !@is_dir(PHPGW_SERVER_ROOT.'/'.$app))
|
|
|
|
{
|
|
|
|
$msg = lang('Application name needed to write a langfile or dump the eTemplates !!!');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$additional = array();
|
|
|
|
if ($app == 'etemplate')
|
|
|
|
{
|
|
|
|
$additional = $this->etemplate->types + $this->extensions + $this->aligns + $this->valigns +
|
|
|
|
$this->edit_menu + $this->box_menu + $this->row_menu + $this->column_menu + $this->onclick_types;
|
|
|
|
}
|
|
|
|
else // try to call the writeLangFile function of the app's ui-layer
|
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
foreach(array('ui'.$name,'ui',$name,'bo'.$name) as $class)
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
if (file_exists(EGW_INCLUDE_ROOT.'/'.$name.'/inc/class.'.$class.'.inc.php') &&
|
|
|
|
($ui =& CreateObject($name.'.'.$class)) && is_object($ui))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
}
|
|
|
|
if (is_object($ui) && @$ui->public_functions['writeLangFile'])
|
|
|
|
{
|
|
|
|
$msg = "$class::writeLangFile: ".$ui->writeLangFile();
|
|
|
|
}
|
|
|
|
unset($ui);
|
|
|
|
}
|
|
|
|
if (empty($msg))
|
|
|
|
{
|
|
|
|
$msg = $this->etemplate->writeLangFile($app,'en',$additional);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($content['export_xml'])
|
|
|
|
{
|
|
|
|
$msg .= $this->export_xml($xml,$xml_label);
|
|
|
|
}
|
|
|
|
$new_content = $this->etemplate->as_array() + array(
|
|
|
|
'msg' => $msg,
|
|
|
|
'xml_label' => $xml_label,
|
|
|
|
'xml' => $xml ? '<pre>'.$this->etemplate->html->htmlspecialchars($xml)."</pre>\n" : '',
|
|
|
|
);
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2005-02-20 22:45:24 +01:00
|
|
|
$editor =& new etemplate('etemplate.editor.new');
|
|
|
|
if (!$msg && isset($content['values']) && !isset($content['vals']))
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
$r = 1;
|
2005-02-24 22:02:24 +01:00
|
|
|
foreach((array)$content['cont'] as $key => $val)
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2002-05-13 20:17:44 +02:00
|
|
|
$vals["@$r"] = $key;
|
2002-09-24 23:55:16 +02:00
|
|
|
$vals["A$r"] = is_array($val) ? htmlspecialchars(serialize($val)).'#SeR#' : $val;
|
2005-02-20 22:45:24 +01:00
|
|
|
++$r;
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
$editor->data[$editor->rows]['A']['name'] = 'etemplate.editor.values';
|
|
|
|
$editor->data[$editor->rows]['A']['size'] = 'vals';
|
2005-02-24 22:02:24 +01:00
|
|
|
$new_content['vals'] = $vals;
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-02-13 14:03:36 +01:00
|
|
|
// set onclick handler
|
2005-02-16 00:22:10 +01:00
|
|
|
$this->etemplate->onclick_handler = "edit_widget('%p');";
|
|
|
|
// setting the javascript via the content, allows looping too
|
2005-02-20 22:45:24 +01:00
|
|
|
$new_content['onclick'] = '
|
2005-02-16 00:22:10 +01:00
|
|
|
<script language="javascript">
|
|
|
|
function edit_widget(path)
|
|
|
|
{
|
2005-02-23 10:36:46 +01:00
|
|
|
var url = "'.$GLOBALS['phpgw']->link('/index.php',$this->etemplate->as_array(-1)+array(
|
2005-02-16 00:22:10 +01:00
|
|
|
'menuaction' => 'etemplate.editor.widget',
|
2005-02-23 10:36:46 +01:00
|
|
|
)).'";
|
|
|
|
url = url.replace(/index.php\\?/,"index.php?path="+path+"&");
|
|
|
|
window.open(url,"etemplate_editor_widget","dependent=yes,width=600,height=450,location=no,menubar=no,toolbar=no,scrollbars=yes,status=yes");
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
|
|
|
</script>';
|
2005-04-15 00:08:25 +02:00
|
|
|
if ($app != 'etemplate' && file_exists(PHPGW_SERVER_ROOT.'/'.$app.'/templates/default/app.css'))
|
|
|
|
{
|
|
|
|
$new_content['onclick'] .= $editor->html->style('@import url('.$GLOBALS['phpgw_info']['server']['webserver_url'].'/'.$app.'/templates/default/app.css);');
|
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
$editor->data[$editor->rows]['A']['obj'] = &$this->etemplate;
|
|
|
|
$vals = $content['vals'];
|
|
|
|
$olds = $content['olds'];
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2002-05-13 20:17:44 +02:00
|
|
|
for ($r = 1; isset($vals["A$r"]); ++$r)
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
$new_content['cont'][$olds["@$r"]] = substr($vals["A$r"],-5)=='#SeR#' ?
|
2002-09-24 23:55:16 +02:00
|
|
|
unserialize(substr($vals["A$r"],0,-5)) : $vals["A$r"];
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
$preserv['olds'] = $vals;
|
|
|
|
$preserv['old_keys'] = $this->etemplate->as_array(-1); // in case we do a save as
|
|
|
|
|
2005-02-06 19:12:26 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('Editable Templates - Show Template');
|
2005-03-05 15:59:33 +01:00
|
|
|
$editor->exec('etemplate.editor.edit',$new_content,array(),'',$preserv,0,'/^cont/');
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2005-02-16 00:22:10 +01:00
|
|
|
/**
|
|
|
|
* initialises the children arrays for the new widget type, converts boxes <--> grids
|
|
|
|
*
|
2005-02-18 23:44:42 +01:00
|
|
|
* @internal
|
2005-02-16 00:22:10 +01:00
|
|
|
* @param array &$widget reference to the new widget data
|
|
|
|
* @param array $old the old widget data
|
|
|
|
*/
|
|
|
|
function change_widget_type(&$widget,$old)
|
|
|
|
{
|
|
|
|
//echo "<p>editor::change_widget_type($widget[type]=$old[type])</p>\n";
|
|
|
|
$old_type = $old['type'];
|
|
|
|
$old_had_children = isset($this->etemplate->widgets_with_children[$old_type]);
|
2005-02-22 22:02:26 +01:00
|
|
|
|
2005-02-16 00:22:10 +01:00
|
|
|
if (!isset($this->etemplate->widgets_with_children[$widget['type']]) ||
|
2005-02-22 22:02:26 +01:00
|
|
|
($old_type == 'grid') == ($widget['type'] == 'grid'))
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
if ($this->etemplate->widgets_with_children[$widget['type']] == 'box') // box
|
2005-02-27 22:32:43 +01:00
|
|
|
{
|
2005-02-20 22:45:24 +01:00
|
|
|
if ((int) $widget['size'] < 1) // min. 1 child
|
|
|
|
{
|
|
|
|
list(,$options) = explode(',',$widget['size'],2);
|
|
|
|
$widget['size'] = '1'.($options ? ','.$options : '');
|
|
|
|
}
|
|
|
|
// create the needed cells, if they dont exist
|
|
|
|
for ($n = 1; $n <= (int) $widget['size']; ++$n)
|
|
|
|
{
|
2005-03-07 22:58:15 +01:00
|
|
|
if (!is_array($widget[$n])) $widget[$n] = $n == 1 ? $old : soetemplate::empty_cell();
|
2005-02-20 22:45:24 +01:00
|
|
|
}
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
return; // no change necessary, eg. between different box-types
|
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
switch ($this->etemplate->widgets_with_children[$widget['type']])
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
case 'grid':
|
|
|
|
$widget['data'] = array(array());
|
|
|
|
$widget['cols'] = $widget['rows'] = 0;
|
|
|
|
|
|
|
|
if ($old_had_children) // box --> grid: hbox --> 1 row, other boxes --> 1 column
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
list($num) = explode(',',$old['size']);
|
|
|
|
for ($n = 1; is_array($old[$n]) && $n <= $num; ++$n)
|
|
|
|
{
|
|
|
|
$new_line = null;
|
|
|
|
if ($old_type != 'hbox') soetemplate::add_child($widget,$new_line);
|
2005-05-07 16:05:10 +02:00
|
|
|
soetemplate::add_child($widget,$old[$n]);
|
|
|
|
unset($widget[$n]);
|
2005-02-22 22:02:26 +01:00
|
|
|
}
|
|
|
|
$widget['size'] = '';
|
2005-02-20 22:45:24 +01:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
else // 1 row with 1 column/child
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
soetemplate::add_child($widget,soetemplate::empty_cell());
|
2005-02-20 22:45:24 +01:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'box':
|
|
|
|
$widget['size'] = 0;
|
|
|
|
|
|
|
|
if ($old_type == 'grid')
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
if (preg_match('/,(vertical|horizontal)/',$widget['size'],$matches))
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
$orient = $matches[1];
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$orient = $widget['type'] == 'hbox' ? 'horizontal' : 'vertical';
|
|
|
|
}
|
|
|
|
if ($orient == 'horizontal') // ==> use first row
|
|
|
|
{
|
|
|
|
$row =& $old['data'][1];
|
|
|
|
for ($n = 0; $n < $old['cols']; ++$n)
|
|
|
|
{
|
|
|
|
$cell =& $row[soetemplate::num2chrs($n)];
|
|
|
|
soetemplate::add_child($widget,$cell);
|
|
|
|
list($span) = (int)explode(',',$cell['span']);
|
|
|
|
if ($span == 'all') break;
|
|
|
|
while ($span-- > 1) ++$n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // vertical ==> use 1 column
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
for ($n = 1; $n <= $old['rows']; ++$n)
|
|
|
|
{
|
|
|
|
soetemplate::add_child($widget,$old['data'][$n][soetemplate::num2chrs(0)]);
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
if (!$widget['size']) // minimum one child
|
|
|
|
{
|
|
|
|
soetemplate::add_child($widget,soetemplate::empty_cell());
|
|
|
|
}
|
|
|
|
break;
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
|
|
|
//_debug_array($widget);
|
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns array with path => type pairs for each parent of $path
|
|
|
|
*
|
|
|
|
* @param string $path path to the widget not the parent!
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function path_components($path)
|
|
|
|
{
|
|
|
|
$path_parts = explode('/',$path);
|
|
|
|
array_pop($path_parts); // removed the widget itself
|
|
|
|
array_shift($path_parts); // removed the leading empty string
|
|
|
|
|
|
|
|
$components = array();
|
|
|
|
$part_path = '';
|
|
|
|
foreach($path_parts as $part)
|
|
|
|
{
|
|
|
|
$part_path .= '/'.$part;
|
|
|
|
$parent =& $this->etemplate->get_widget_by_path($part_path);
|
|
|
|
$components[$part_path] = $parent['type'];
|
|
|
|
}
|
|
|
|
return $components;
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
|
|
|
|
/**
|
2005-02-18 23:44:42 +01:00
|
|
|
* returns array with path => type pairs for each parent of $path
|
|
|
|
*
|
|
|
|
* @param array $parent the parent
|
|
|
|
* @param string $child_id id of child
|
|
|
|
* @param string $parent_path path of the parent
|
|
|
|
* @return array with keys left, right, up and down and their pathes set (if applicable)
|
2005-02-16 00:22:10 +01:00
|
|
|
*/
|
2005-02-18 23:44:42 +01:00
|
|
|
function parent_navigation($parent,$parent_path,$child_id,$widget)
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($parent['type'] == 'grid' && preg_match('/^([0-9]+)([A-Z]+)$/',$child_id,$matches))
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
list(,$r,$c) = $matches;
|
|
|
|
// find the column-number (base 0) for $c (A, B, C, ...)
|
|
|
|
for($col = 0; soetemplate::num2chrs($col) != $c && $col < 100; ++$col) ;
|
2005-02-16 00:22:10 +01:00
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($col > 0) $left = $parent_path.'/'.$r.soetemplate::num2chrs($col-1);
|
2005-02-16 00:22:10 +01:00
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($col < $parent['cols']-1) $right = $parent_path.'/'.$r.soetemplate::num2chrs($col+1);
|
|
|
|
|
|
|
|
if ($r > 1) $up = $parent_path.'/'.($r-1).$c;
|
|
|
|
|
|
|
|
if ($r < $parent['rows']) $down = $parent_path.'/'.($r+1).$c;
|
|
|
|
}
|
|
|
|
elseif ($parent['type']) // any box
|
|
|
|
{
|
|
|
|
if ($child_id > 1) $previous = $parent_path.'/'.($child_id-1);
|
|
|
|
|
|
|
|
if ($child_id < (int) $parent['size']) $next = $parent_path.'/'.($child_id+1);
|
|
|
|
}
|
|
|
|
else // template
|
|
|
|
{
|
|
|
|
if ($child_id > 0) $previous = '/'.($child_id-1);
|
|
|
|
|
|
|
|
if ($child_id < count($this->etemplate->children)-1) $next = '/'.($child_id+1);
|
|
|
|
}
|
|
|
|
if ($widget['type'] == 'grid')
|
|
|
|
{
|
|
|
|
$in = $parent_path.'/'.$child_id.'/1A';
|
|
|
|
}
|
|
|
|
elseif (isset($this->etemplate->widgets_with_children[$widget['type']]) && $widget['type'] != 'template')
|
|
|
|
{
|
|
|
|
if ($widget['type']) // box
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$in = $parent_path.'/'.$child_id.'/1';
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
else
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$in = '/0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$navi = array();
|
|
|
|
foreach(array('left'=>'←','up'=>' ↑ ','down'=>' ↓ ',
|
|
|
|
'right'=>'→','previous'=>'←↑','next'=>'↓→','in'=>'×') as $var => $dir)
|
|
|
|
{
|
|
|
|
if ($$var) $navi[$$var] = $dir;
|
|
|
|
}
|
|
|
|
return $navi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* functions of the edit-menu: paste, swap, cut, delete, copy
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
* @param string &$action row_delete, row_insert_above, row_insert_below, row_swap, row_prefs
|
|
|
|
* @param array &$parent referece to the parent
|
|
|
|
* @param array &$content reference to the content-array
|
|
|
|
* @param string $child_id id of a cell
|
|
|
|
* @return string msg to display
|
|
|
|
*/
|
|
|
|
function edit_actions(&$action,&$parent,&$content,$child_id)
|
|
|
|
{
|
|
|
|
switch ($action)
|
|
|
|
{
|
|
|
|
case 'paste':
|
|
|
|
case 'swap':
|
|
|
|
$clipboard = $GLOBALS['phpgw']->session->appsession('clipboard','etemplate');
|
|
|
|
if (!is_array($clipboard))
|
|
|
|
{
|
|
|
|
return lang('nothing in clipboard to paste !!!');
|
|
|
|
}
|
|
|
|
if ($action == 'swap')
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->session->appsession('clipboard','etemplate',$content['cell']);
|
|
|
|
}
|
|
|
|
$content['cell'] = $clipboard;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'copy':
|
|
|
|
case 'cut':
|
|
|
|
$GLOBALS['phpgw']->session->appsession('clipboard','etemplate',$content['cell']);
|
|
|
|
if ($action != 'cut')
|
|
|
|
{
|
|
|
|
return lang('widget copied into clipboard');
|
|
|
|
}
|
|
|
|
// fall-through
|
|
|
|
case 'delete':
|
|
|
|
if ($parent['type'] != 'grid')
|
|
|
|
{
|
|
|
|
// delete widget from parent
|
|
|
|
if ($parent['type']) // box
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-05-07 16:05:10 +02:00
|
|
|
list($num,$options) = explode(',',$parent['size'],2);
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($num <= 1) // cant delete last child --> only empty it
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$parent[$num=1] = soetemplate::empty_cell();
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
else
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
for($n = $child_id; $n < $num; ++$n)
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$parent[$n] = $parent[1+$n];
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
unset($parent[$num--]);
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
$parent['size'] = $num . ($options ? ','.$options : '');
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
else // template itself
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-03-05 15:59:33 +01:00
|
|
|
if (count($this->etemplate->children) <= 1) // cant delete last child
|
2005-02-18 23:44:42 +01:00
|
|
|
{
|
|
|
|
$this->etemplate->children[0] = soetemplate::empty_cell();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($parent[$child_id]);
|
|
|
|
$this->etemplate->children = array_values($this->etemplate->children);
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
$action = 'save-no-merge';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-05-07 16:05:10 +02:00
|
|
|
$content['cell'] = soetemplate::empty_cell();
|
2005-02-18 23:44:42 +01:00
|
|
|
return lang('cant delete a single widget from a grid !!!');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* functions of the box-menu: insert-before, -behind und swap
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
* @param string &$action row_delete, row_insert_above, row_insert_below, row_swap, row_prefs
|
|
|
|
* @param array &$parent referece to the parent
|
|
|
|
* @param array &$content reference to the content-array
|
2005-02-21 13:26:20 +01:00
|
|
|
* @param string &$child_id id of a cell, may change to the next cell if inserting behind
|
2005-02-18 23:44:42 +01:00
|
|
|
* @param string $parent_path path of parent
|
|
|
|
* @return string msg to display
|
|
|
|
*/
|
2005-02-21 13:26:20 +01:00
|
|
|
function box_actions(&$action,&$parent,&$content,&$child_id,$parent_path)
|
2005-02-18 23:44:42 +01:00
|
|
|
{
|
|
|
|
switch ($action)
|
|
|
|
{
|
|
|
|
case 'box_insert_before':
|
|
|
|
case 'box_insert_behind':
|
|
|
|
$n = $child_id + (int)($action == 'box_insert_behind');
|
|
|
|
if (!$parent['type']) // template
|
|
|
|
{
|
|
|
|
$num = count($parent)-1; // 0..count()-1
|
|
|
|
}
|
|
|
|
else // boxes
|
|
|
|
{
|
|
|
|
list($num,$options) = explode(',',$parent['size'],2);
|
|
|
|
}
|
|
|
|
for($i = $num; $i >= $n; --$i)
|
|
|
|
{
|
|
|
|
$parent[1+$i] = $parent[$i];
|
|
|
|
}
|
|
|
|
$parent[$n] = $content['cell'] = soetemplate::empty_cell();
|
2005-02-21 13:26:20 +01:00
|
|
|
$child_id = $n;
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($parent['type']) $parent['size'] = (1+$num) . ($options ? ','.$options : '');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'box_swap_next':
|
|
|
|
if (!$parent['type']) // template
|
|
|
|
{
|
|
|
|
$num = count($parent)-1; // 0..count()-1
|
|
|
|
}
|
|
|
|
else // boxes
|
|
|
|
{
|
|
|
|
list($num) = explode(',',$parent['size'],2);
|
|
|
|
}
|
|
|
|
if ($child_id == $num) // if on last cell, swap with the one before
|
|
|
|
{
|
2005-03-05 15:59:33 +01:00
|
|
|
$this->swap($parent[$child_id],$parent[$child_id-1]);
|
2005-02-18 23:44:42 +01:00
|
|
|
--$child_id;
|
|
|
|
}
|
2005-03-05 15:59:33 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->swap($parent[$child_id],$parent[$child_id+1]);
|
|
|
|
++$child_id;
|
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
$action = 'apply-no-merge';
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
/**
|
|
|
|
* functions of the row-menu: insert, deleting & swaping of rows
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
* @param string &$action row_delete, row_insert_above, row_insert_below, row_swap_next, row_prefs
|
|
|
|
* @param array &$grid grid
|
|
|
|
* @param string $child_id id of a cell
|
|
|
|
* @return string msg to display
|
|
|
|
*/
|
|
|
|
function row_actions(&$action,&$grid,$child_id)
|
|
|
|
{
|
|
|
|
$data =& $grid['data'];
|
|
|
|
$rows =& $grid['rows'];
|
|
|
|
$cols =& $grid['cols'];
|
|
|
|
$opts =& $data[0];
|
|
|
|
|
|
|
|
if (preg_match('/^([0-9]+)([A-Z]+)$/',$child_id,$matches)) list(,$r,$c) = $matches;
|
|
|
|
|
|
|
|
if (!$c || !$r || $r > $rows) return "wrong child_id='$child_id' => r='$r', c='$c'";
|
|
|
|
|
|
|
|
switch($action)
|
|
|
|
{
|
|
|
|
case 'row_swap_next':
|
|
|
|
if ($r > $rows-1)
|
|
|
|
{
|
|
|
|
if ($r != $rows) return lang('no row to swap with !!!');
|
|
|
|
--$r; // in last row swap with row above
|
|
|
|
}
|
|
|
|
$this->swap($data[$r],$data[1+$r]);
|
|
|
|
$this->swap($opts['c'.$r],$opts['c'.(1+$r)]);
|
|
|
|
$this->swap($opts['h'.$r],$opts['h'.(1+$r)]);
|
|
|
|
break;
|
2005-02-16 00:22:10 +01:00
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
case 'row_delete':
|
|
|
|
if ($rows <= 1) // one row only => delete whole grid
|
|
|
|
{
|
|
|
|
return lang('cant delete the only row in a grid !!!');
|
|
|
|
// todo: delete whole grid instead
|
|
|
|
}
|
|
|
|
for($i = $r; $i < $rows; ++$i)
|
|
|
|
{
|
|
|
|
$opts['c'.$i] = $opts['c'.(1+$i)];
|
|
|
|
$opts['h'.$i] = $opts['h'.(1+$i)];
|
|
|
|
$data[$i] = $data[1+$i];
|
|
|
|
}
|
|
|
|
unset($opts['c'.$rows]);
|
|
|
|
unset($opts['h'.$rows]);
|
|
|
|
unset($data[$rows--]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'row_insert_above':
|
|
|
|
--$r;
|
|
|
|
// fall-through
|
|
|
|
case 'row_insert_below':
|
|
|
|
//echo "row_insert_below($r) rows=$rows, cols=$cols"; _debug_array($grid);
|
|
|
|
// move height + class options of rows
|
|
|
|
for($i = $rows; $i > $r; --$i)
|
|
|
|
{
|
|
|
|
echo ($i+1)."=$i<br>\n";
|
|
|
|
$data[1+$i] = $data[$i];
|
|
|
|
$opts['c'.(1+$i)] = $opts['c'.$i];
|
|
|
|
$opts['h'.(1+$i)] = $opts['h'.$i];
|
|
|
|
}
|
|
|
|
for($i = 0; $i < $cols; ++$i)
|
|
|
|
{
|
|
|
|
echo (1+$r).":$i=".soetemplate::num2chrs($i)."=empty_cell()<br>\n";
|
|
|
|
$data[1+$r][soetemplate::num2chrs($i)] = soetemplate::empty_cell();
|
|
|
|
}
|
|
|
|
$opts['c'.(1+$r)] = $opts['h'.(1+$r)] = '';
|
|
|
|
++$rows;
|
|
|
|
//_debug_array($grid); return '';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$action = 'save-no-merge';
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* functions of the column-menu: insert, deleting & swaping of columns
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
* @param string &$action column_delete, column_insert_before, column_insert_behind, column_swap_next, column_prefs
|
|
|
|
* @param array &$grid grid
|
|
|
|
* @param string $child_id id of a cell
|
|
|
|
* @return string msg to display
|
|
|
|
*/
|
|
|
|
function column_actions(&$action,&$grid,$child_id)
|
|
|
|
{
|
|
|
|
$data =& $grid['data'];
|
|
|
|
$rows =& $grid['rows'];
|
|
|
|
$cols =& $grid['cols'];
|
|
|
|
$opts =& $data[0];
|
|
|
|
|
|
|
|
if (preg_match('/^([0-9]+)([A-Z]+)$/',$child_id,$matches)) list(,$r,$c) = $matches;
|
|
|
|
// find the column-number (base 0) for $c (A, B, C, ...)
|
|
|
|
for($col = 0; soetemplate::num2chrs($col) != $c && $col < 100; ++$col) ;
|
|
|
|
|
|
|
|
if (!$c || !$r || $r > $rows || $col >= $cols) return "wrong child_id='$child_id' => r='$r', c='$c', col=$col";
|
|
|
|
|
|
|
|
switch($action)
|
|
|
|
{
|
|
|
|
case 'column_swap_next':
|
|
|
|
if ($col >= $cols-1)
|
|
|
|
{
|
|
|
|
if ($col != $cols-1) return lang('no column to swap with !!!');
|
|
|
|
$c = soetemplate::num2chrs(--$col); // in last column swap with the one before
|
|
|
|
}
|
|
|
|
$c_next = soetemplate::num2chrs(1+$col);
|
|
|
|
for($row = 1; $row <= $rows; ++$row)
|
|
|
|
{
|
|
|
|
$this->swap($data[$row][$c],$data[$row][$c_next]);
|
|
|
|
}
|
|
|
|
$this->swap($opts[$c],$opts[$c_next]);
|
|
|
|
//_debug_array($grid); return '';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'column_insert_behind':
|
|
|
|
++$col;
|
|
|
|
case 'column_insert_before':
|
|
|
|
//echo "<p>column_insert_before: col=$col</p>\n";
|
|
|
|
// $col is where the new column data goes
|
|
|
|
for ($row = 1; $row <= $rows; ++$row)
|
|
|
|
{
|
|
|
|
for ($i = $cols; $i > $col; --$i)
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$data[$row][soetemplate::num2chrs($i)] = $data[$row][soetemplate::num2chrs($i-1)];
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
$data[$row][soetemplate::num2chrs($col)] = soetemplate::empty_cell();
|
|
|
|
}
|
|
|
|
for ($i = $cols; $i > $col; --$i)
|
|
|
|
{
|
|
|
|
$opts[soetemplate::num2chrs($i)] = $opts[soetemplate::num2chrs($i-1)];
|
|
|
|
}
|
|
|
|
unset($opts[soetemplate::num2chrs($col)]);
|
|
|
|
++$cols;
|
|
|
|
//_debug_array($grid); return '';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'column_delete':
|
|
|
|
if ($cols <= 1)
|
|
|
|
{
|
|
|
|
return lang('cant delete the only column of a grid !!!');
|
|
|
|
// todo: delete whole grid instead
|
|
|
|
}
|
|
|
|
for ($row = 1; $row <= $rows; ++$row)
|
|
|
|
{
|
|
|
|
for ($i = $col; $i < $cols-1; ++$i)
|
2005-02-16 00:22:10 +01:00
|
|
|
{
|
2005-02-18 23:44:42 +01:00
|
|
|
$data[$row][soetemplate::num2chrs($i)] = $data[$row][soetemplate::num2chrs($i+1)];
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
unset($data[$row][soetemplate::num2chrs($cols-1)]);
|
|
|
|
}
|
|
|
|
for ($i = $col; $i < $cols-1; ++$i)
|
|
|
|
{
|
|
|
|
$opts[soetemplate::num2chrs($i)] = $opts[soetemplate::num2chrs($i+1)];
|
|
|
|
}
|
|
|
|
unset($opts[soetemplate::num2chrs(--$cols)]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$action = 'save-no-merge';
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2005-02-20 22:45:24 +01:00
|
|
|
/**
|
|
|
|
* converts onclick selectbox and onclick text to one javascript call
|
|
|
|
*
|
|
|
|
* @param array &$widget reference into the widget-tree
|
|
|
|
* @param array &$cell_content cell array in content
|
|
|
|
* @param boolean $widget2content=true copy from widget to content or other direction
|
|
|
|
*/
|
|
|
|
function fix_set_onclick(&$widget,&$cell_content,$widget2content=true)
|
|
|
|
{
|
|
|
|
if ($widget2content)
|
|
|
|
{
|
2005-02-24 22:02:24 +01:00
|
|
|
if (preg_match('/^return confirm\(["\']{1}?(.*)["\']{1}\);?$/',$widget['onclick'],$matches))
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
|
|
|
$cell_content['onclick'] = $matches[1];
|
|
|
|
$cell_content['onclick_type'] = 'confirm';
|
|
|
|
}
|
2005-05-07 16:05:10 +02:00
|
|
|
elseif (preg_match('/^window.open\(egw::link\(\'\/index.php\',\'([^\']+)\'\),\'([^\']+)\',\'dependent=yes,width=([0-9]+),height=([0-9]+),scrollbars=yes,status=yes\'\); return false;$/',$widget['onclick'],$matches))
|
|
|
|
{
|
|
|
|
$cell_content['onclick'] = $matches[1];
|
|
|
|
if ($matches[2] != '_blank')
|
|
|
|
{
|
|
|
|
$cell_content['onclick'] .= ','.$matches[2];
|
|
|
|
}
|
|
|
|
if ($matches[3] != '600')
|
|
|
|
{
|
|
|
|
$cell_content['onclick'] .= ($matches[2]=='_blank' ? ',':'').','.$matches[3];
|
|
|
|
}
|
|
|
|
if ($matches[4] != '450')
|
|
|
|
{
|
|
|
|
$cell_content['onclick'] .= ($matches[2]=='_blank' ? ',':'').
|
|
|
|
($matches[3]=='600' ? ',':'').','.$matches[4];
|
|
|
|
}
|
|
|
|
$cell_content['onclick_type'] = 'popup';
|
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$cell_content['onclick_type'] = !$widget['onclick'] ? '' : 'custom';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // content --> widget
|
|
|
|
{
|
2005-02-24 22:02:24 +01:00
|
|
|
if (preg_match('/^return confirm\(["\']{1}?(.*)["\']{1}\);?$/',$cell_content['onclick'],$matches) ||
|
2005-05-07 16:05:10 +02:00
|
|
|
$cell_content['onclick_type'] == 'confirm' && $cell_content['onclick'])
|
2005-02-20 22:45:24 +01:00
|
|
|
{
|
|
|
|
$cell_content['onclick_type'] = 'confirm';
|
|
|
|
$cell_content['onclick'] = is_array($matches) && $matches[1] ? $matches[1] : $cell_content['onclick'];
|
|
|
|
$widget['onclick'] = "return confirm('".$cell_content['onclick']."');";
|
|
|
|
}
|
2005-05-07 16:05:10 +02:00
|
|
|
elseif ($cell_content['onclick_type'] == 'popup' && $cell_content['onclick'])
|
|
|
|
{
|
|
|
|
list($get,$target,$width,$height) = explode(',',$cell_content['onclick']);
|
|
|
|
if (!$target) $target = '_blank';
|
|
|
|
if (!$width) $width = 600;
|
|
|
|
if (!$height) $height = 450;
|
|
|
|
$widget['onclick'] = "window.open(egw::link('/index.php','$get'),'$target','dependent=yes,width=$width,height=$height,scrollbars=yes,status=yes'); return false;";
|
|
|
|
}
|
2005-02-20 22:45:24 +01:00
|
|
|
elseif ($cell_content['onclick'])
|
|
|
|
{
|
|
|
|
$wiget['onclick'] = $cell_content['onclick'];
|
|
|
|
$cell_content['onclick_type'] = 'custom';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$cell_content['onclick_type'] = '';
|
|
|
|
}
|
|
|
|
unset($widget['onclick_type']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
/**
|
|
|
|
* edit dialog for a widget
|
|
|
|
*
|
|
|
|
* @param array $content the submitted content of the etemplate::exec function, default null
|
|
|
|
* @param string $msg msg to display, default ''
|
|
|
|
*/
|
|
|
|
function widget($content=null,$msg='')
|
|
|
|
{
|
|
|
|
if (is_array($content))
|
|
|
|
{
|
|
|
|
$path = $content['goto'] ? $content['goto'] : ($content['goto2'] ? $content['goto2'] : $content['path']);
|
2005-05-08 09:25:58 +02:00
|
|
|
$Ok = $this->etemplate->read($content['name'],$content['template'],$content['lang'],0,$content['goto'] || $content['goto2'] ? $content['version'] : $content['old_version']);
|
2005-02-18 23:44:42 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//echo "<p><b>".($_GET['path']).":</b></p>\n";
|
2005-03-29 16:16:42 +02:00
|
|
|
list($name,$version,$path) = explode(':',$_GET['path'],3); // <name>:<version>:<path>
|
|
|
|
$Ok = $this->etemplate->read(array(
|
|
|
|
'name' => $name,
|
|
|
|
'version' => $version,
|
|
|
|
));
|
2005-02-18 23:44:42 +01:00
|
|
|
}
|
|
|
|
if (!$Ok && !$content['cancel'])
|
|
|
|
{
|
|
|
|
$msg .= lang('Error: Template not found !!!');
|
|
|
|
}
|
|
|
|
$path_parts = explode('/',$path);
|
|
|
|
$child_id = array_pop($path_parts);
|
|
|
|
$parent_path = implode('/',$path_parts);
|
|
|
|
//echo "<p>path='$path': child_id='$child_id', parent_path='$parent_path'</p>\n";
|
|
|
|
$parent =& $this->etemplate->get_widget_by_path($parent_path);
|
|
|
|
|
|
|
|
if (is_array($content))
|
|
|
|
{
|
|
|
|
foreach(array('save','apply','cancel','goto','goto2','edit_menu','box_menu','row_menu','column_menu') as $n => $name)
|
|
|
|
{
|
|
|
|
if (($action = $content[$name] ? ($n < 5 ? $name : $content[$name]) : false)) break;
|
|
|
|
$name = '';
|
|
|
|
}
|
|
|
|
unset($content[$name]);
|
|
|
|
|
|
|
|
//echo "<p>name='$name', parent-type='$parent[type]', action='$action'</p>\n";
|
|
|
|
if (($name == 'row_menu' || $name == 'column_menu') && $parent['type'] != 'grid' ||
|
|
|
|
$name == 'box_menu' && $parent['type'] == 'grid')
|
|
|
|
{
|
|
|
|
$msg .= lang("parent is a '%1' !!!",lang($parent['type'] ? $parent['type'] : 'template'));
|
|
|
|
$action = false;
|
|
|
|
}
|
|
|
|
switch($name)
|
|
|
|
{
|
|
|
|
case 'edit_menu':
|
|
|
|
$msg .= $this->edit_actions($action,$parent,$content,$child_id);
|
2005-02-16 00:22:10 +01:00
|
|
|
break;
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
case 'box_menu':
|
|
|
|
$msg .= $this->box_actions($action,$parent,$content,$child_id,$parent_path);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'row_menu':
|
|
|
|
$msg .= $this->row_actions($action,$parent,$child_id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'column_menu':
|
|
|
|
$msg .= $this->column_actions($action,$parent,$child_id);
|
2005-02-16 00:22:10 +01:00
|
|
|
break;
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
default:
|
|
|
|
// all menu's are (only) working on the parent, referencing widget is unnecessary
|
|
|
|
// and gives unexpected results, if parent is changed (eg. content gets copied)
|
|
|
|
$widget =& $this->etemplate->get_widget_by_path($path);
|
|
|
|
break;
|
2005-02-16 00:22:10 +01:00
|
|
|
}
|
|
|
|
switch ($action)
|
|
|
|
{
|
2005-02-22 22:02:26 +01:00
|
|
|
case 'goto':
|
|
|
|
case 'goto2':
|
|
|
|
$content['cell'] = $widget;
|
|
|
|
break;
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
case '':
|
2005-02-22 22:02:26 +01:00
|
|
|
case 'save': case 'apply':
|
2005-02-18 23:44:42 +01:00
|
|
|
// initialise the children arrays if type is changed to a widget with children
|
|
|
|
//echo "<p>$content[path]: $widget[type] --> ".$content['cell']['type']."</p>\n";
|
2005-02-22 22:02:26 +01:00
|
|
|
if (isset($this->etemplate->widgets_with_children[$content['cell']['type']]))
|
2005-02-18 23:44:42 +01:00
|
|
|
{
|
|
|
|
$this->change_widget_type($content['cell'],$widget);
|
|
|
|
}
|
2005-02-22 22:02:26 +01:00
|
|
|
if (!$action) break;
|
|
|
|
// save+apply only
|
2005-02-16 00:22:10 +01:00
|
|
|
$widget = $content['cell'];
|
2005-02-20 22:45:24 +01:00
|
|
|
if ($content['cell']['onclick_type'] || $content['cell']['onclick'])
|
|
|
|
{
|
|
|
|
$this->fix_set_onclick($widget,$content['cell'],false);
|
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
// row- and column-attr for a grid
|
|
|
|
if ($parent['type'] == 'grid' && preg_match('/^([0-9]+)([A-Z]+)$/',$child_id,$matches))
|
|
|
|
{
|
|
|
|
list(,$row,$col) = $matches;
|
|
|
|
$parent['data'][0]['h'.$row] = $content['grid_row']['height'].
|
|
|
|
($content['grid_row']['disabled']?','.$content['grid_row']['disabled']:'');
|
|
|
|
$parent['data'][0]['c'.$row] = $content['grid_row']['class'].
|
|
|
|
($content['grid_row']['valign']?','.$content['grid_row']['valign']:'');
|
|
|
|
$parent['data'][0][$col] = $content['grid_column']['width'].
|
|
|
|
($content['grid_column']['disabled']?','.$content['grid_column']['disabled']:'');
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
// fall-through
|
|
|
|
case 'save-no-merge':
|
|
|
|
case 'apply-no-merge':
|
|
|
|
//$this->etemplate->echo_tmpl();
|
|
|
|
$ok = $this->etemplate->save($content);
|
|
|
|
$msg .= $ok ? lang('Template saved') : lang('Error: while saveing !!!');
|
|
|
|
|
|
|
|
// if necessary fix the version of our opener
|
|
|
|
if ($content['opener']['name'] == $content['name'] &&
|
|
|
|
$content['opener']['template'] == $content['template'] &&
|
|
|
|
$content['opener']['group'] == $content['group'] &&
|
|
|
|
$content['opener']['lang'] == $content['lang'])
|
|
|
|
{
|
|
|
|
$content['opener']['version'] = $content['version'];
|
|
|
|
}
|
|
|
|
$js = "opener.location.href='".$GLOBALS['phpgw']->link('/index.php',array(
|
2005-02-20 22:45:24 +01:00
|
|
|
'menuaction' => 'etemplate.editor.edit',
|
2005-02-16 00:22:10 +01:00
|
|
|
)+$content['opener'])."';";
|
|
|
|
if ($action == 'apply' || $action == 'apply-no-merge') break;
|
|
|
|
// fall through
|
|
|
|
case 'cancel':
|
|
|
|
$js .= 'window.close();';
|
|
|
|
echo "<html><body><script>$js</script></body></html>\n";
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ($js)
|
|
|
|
{
|
|
|
|
$content['java_script'] = "<script>$js</script>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$widget =& $this->etemplate->get_widget_by_path($path);
|
|
|
|
|
2005-02-18 23:44:42 +01:00
|
|
|
$content = $this->etemplate->as_array(-1);
|
2005-02-16 00:22:10 +01:00
|
|
|
$content['cell'] = $widget;
|
2005-02-20 22:45:24 +01:00
|
|
|
$this->fix_set_onclick($widget,$content['cell'],true);
|
2005-02-16 00:22:10 +01:00
|
|
|
|
|
|
|
foreach($this->etemplate->db_key_cols as $var)
|
|
|
|
{
|
|
|
|
if (isset($_GET[$var]))
|
|
|
|
{
|
|
|
|
$content['opener'][$var] = $_GET[$var];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
unset($content['cell']['obj']); // just in case it contains a template-object
|
|
|
|
|
|
|
|
if ($parent['type'] == 'grid' && preg_match('/^([0-9]+)([A-Z]+)$/',$child_id,$matches))
|
|
|
|
{
|
|
|
|
list(,$row,$col) = $matches;
|
|
|
|
|
|
|
|
$grid_row =& $content['grid_row'];
|
|
|
|
list($grid_row['height'],$grid_row['disabled']) = explode(',',$parent['data'][0]['h'.$row]);
|
|
|
|
list($grid_row['class'],$grid_row['valign']) = explode(',',$parent['data'][0]['c'.$row]);
|
|
|
|
|
|
|
|
$grid_column =& $content['grid_column'];
|
|
|
|
list($grid_column['width'],$grid_column['disabled']) = explode(',',$parent['data'][0][$col]);
|
|
|
|
//echo "<p>grid_row($row)=".print_r($grid_row,true).", grid_column($col)=".print_r($grid_column,true)."</p>\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($content['grid_row']);
|
|
|
|
unset($content['grid_column']);
|
|
|
|
}
|
2005-02-21 13:26:20 +01:00
|
|
|
$content['path'] = ($parent_path!='/'?$parent_path:'').'/'.$child_id;
|
2005-02-18 23:44:42 +01:00
|
|
|
$content['msg'] = $msg;
|
|
|
|
$content['goto'] = $this->path_components($content['path']);
|
|
|
|
$content['goto2'] = $this->parent_navigation($parent,$parent_path,$child_id,$widget);
|
|
|
|
|
2005-02-16 00:22:10 +01:00
|
|
|
$editor =& new etemplate('etemplate.editor.widget');
|
|
|
|
$type_tmpl =& new etemplate;
|
|
|
|
if ($type_tmpl->read('etemplate.editor.widget.'.$widget['type']))
|
|
|
|
{
|
|
|
|
$editor->set_cell_attribute('etemplate.editor.widget.generic','obj',$type_tmpl);
|
|
|
|
}
|
2005-02-18 23:44:42 +01:00
|
|
|
if ($parent['type'] == 'grid')
|
|
|
|
{
|
|
|
|
$editor->disable_cells('box_menu');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$editor->disable_cells('row_menu');
|
|
|
|
$editor->disable_cells('column_menu');
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['java_script'] = "<script>window.focus();</script>\n";
|
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('Editable Templates - Editor');
|
|
|
|
$editor->exec('etemplate.editor.widget',$content,array(
|
2005-02-18 23:44:42 +01:00
|
|
|
'type' => array_merge($this->etemplate->types,$this->extensions),
|
|
|
|
'align' => $this->aligns,
|
2005-02-23 15:33:00 +01:00
|
|
|
'valign' => $this->valigns,
|
2005-02-18 23:44:42 +01:00
|
|
|
'edit_menu' => $this->edit_menu,
|
|
|
|
'box_menu' => $this->box_menu,
|
|
|
|
'row_menu' => $this->row_menu,
|
|
|
|
'column_menu'=> $this->column_menu,
|
2005-02-20 22:45:24 +01:00
|
|
|
'onclick_type'=> $this->onclick_types,
|
2005-02-16 00:22:10 +01:00
|
|
|
),'',$this->etemplate->as_array()+array(
|
|
|
|
'path' => $content['path'],
|
|
|
|
'old_version' => $this->etemplate->version,
|
|
|
|
'opener' => $content['opener'],
|
|
|
|
'cell' => $content['cell'],
|
2005-02-18 23:44:42 +01:00
|
|
|
'goto' => $content['goto'],
|
2005-02-16 00:22:10 +01:00
|
|
|
),2);
|
|
|
|
}
|
|
|
|
|
2005-02-22 22:02:26 +01:00
|
|
|
/**
|
|
|
|
* edit dialog for the styles of a templat or app
|
|
|
|
*
|
|
|
|
* @param array $content the submitted content of the etemplate::exec function, default null
|
|
|
|
* @param string $msg msg to display, default ''
|
|
|
|
*/
|
|
|
|
function styles($content=null,$msg='')
|
|
|
|
{
|
|
|
|
if (!is_array($content))
|
|
|
|
{
|
|
|
|
foreach($this->etemplate->db_key_cols as $var)
|
|
|
|
{
|
|
|
|
if (isset($_GET[$var])) $content[$var] = $_GET[$var];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//_debug_array($content);
|
|
|
|
// security check for content[from]
|
|
|
|
if ($content['from'] && !preg_match('/^[A-Za-z0-9_-]+\/templates\/[A-Za-z0-9_-]+\/app.css$/',$content['from']))
|
|
|
|
{
|
|
|
|
$content['from'] = ''; // someone tried to trick us reading a file we are not suppost to read
|
|
|
|
}
|
|
|
|
if (!$this->etemplate->read($content))
|
|
|
|
{
|
|
|
|
$msg .= lang('Error: Template not found !!!');
|
|
|
|
}
|
|
|
|
if ($content['save'] || $content['apply'])
|
|
|
|
{
|
|
|
|
if ($content['from'])
|
|
|
|
{
|
|
|
|
$path = PHPGW_SERVER_ROOT.'/'.$content['from'];
|
|
|
|
if (is_writable(dirname($path)) && file_exists($path))
|
|
|
|
{
|
|
|
|
rename($path,str_replace('.css','.old.css',$path));
|
|
|
|
}
|
|
|
|
if (file_exists($path) && !is_writable($path))
|
|
|
|
{
|
|
|
|
$msg .= lang("Error: webserver is not allowed to write into '%1' !!!",dirname($path));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$fp = fopen($path,'w');
|
|
|
|
if (!$fp || !fwrite($fp,$content['styles']))
|
|
|
|
{
|
|
|
|
$msg .= lang('Error: while saving !!!');
|
|
|
|
}
|
|
|
|
@fclose($fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // the templates own embeded styles;
|
|
|
|
{
|
|
|
|
$this->etemplate->style = $content['styles'];
|
|
|
|
$ok = $this->etemplate->save();
|
|
|
|
$msg = $ok ? lang('Template saved') : lang('Error: while saveing !!!');
|
|
|
|
}
|
|
|
|
$js = "opener.location.href='".$GLOBALS['phpgw']->link('/index.php',array(
|
|
|
|
'menuaction' => 'etemplate.editor.edit',
|
|
|
|
)+$this->etemplate->as_array(-1))."';";
|
|
|
|
}
|
|
|
|
if ($content['save'] || $content['cancel'])
|
|
|
|
{
|
|
|
|
$js .= 'window.close();';
|
|
|
|
echo "<html><body><script>$js</script></body></html>\n";
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
|
|
}
|
|
|
|
$content = array(
|
|
|
|
'from' => $content['from'],
|
|
|
|
'java_script' => $js ? '<script>'.$js.'</script>' : '',
|
|
|
|
'msg' => $msg
|
|
|
|
);
|
|
|
|
$tmpl =& new etemplate('etemplate.editor.styles');
|
|
|
|
|
|
|
|
if ($content['from'])
|
|
|
|
{
|
|
|
|
$path = PHPGW_SERVER_ROOT.'/'.$content['from'];
|
|
|
|
$content['styles'] = file_exists($path) && is_readable($path) ? implode('',file($path)) : '';
|
|
|
|
if (!is_writable(dirname($path)) && (!file_exists($path) || !is_writable($path)))
|
|
|
|
{
|
|
|
|
$tmpl->set_cell_attribute('styles','readonly',true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['styles'] = $this->etemplate->style;
|
|
|
|
}
|
|
|
|
// generate list of style-sources
|
|
|
|
$keys = $this->etemplate->as_array(-1); unset($keys['group']);
|
|
|
|
$sources[''] = lang('eTemplate').': '.implode(':',$keys);
|
|
|
|
list($app) = explode('.',$this->etemplate->name);
|
2005-02-24 22:02:24 +01:00
|
|
|
$app_templates = @opendir(PHPGW_SERVER_ROOT.'/'.$app.'/templates');
|
|
|
|
while (($template = @readdir($app_templates)) !== false)
|
2005-02-22 22:02:26 +01:00
|
|
|
{
|
|
|
|
$dir = PHPGW_SERVER_ROOT.'/'.$app.'/templates/'.$template;
|
|
|
|
if ($template[0] == '.' || $template == 'CVS' || !is_dir($dir.'/images')) continue; // not a template-dir
|
|
|
|
$exists = file_exists($dir.'/app.css');
|
|
|
|
$writable = is_writable($dir) || $exists && is_writable($dir.'/app.css');
|
|
|
|
if (!$exists && !$writable) continue; // nothing to show
|
|
|
|
$rel_path = $app.'/templates/'.$template.'/app.css';
|
|
|
|
$sources[$rel_path] = lang('file').': '.$rel_path.($exists && !$writable ? ' ('.lang('readonly').')' : '');
|
|
|
|
}
|
|
|
|
$GLOBALS['phpgw_info']['flags']['java_script'] = "<script>window.focus();</script>\n";
|
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('etemplate').' - '.lang('CSS-styles');
|
|
|
|
$tmpl->exec('etemplate.editor.styles',$content,array('from'=>$sources),'',$keys,2);
|
|
|
|
}
|
|
|
|
|
2005-02-13 14:03:36 +01:00
|
|
|
/**
|
|
|
|
* search the inc-dirs of etemplate and the app whichs template is edited for extensions / custom widgets
|
|
|
|
*
|
|
|
|
* extensions are class-files in $app/inc/class.${name}_widget.inc.php
|
2005-02-16 00:22:10 +01:00
|
|
|
* the extensions found will be saved in a class-var and in the session
|
2005-02-13 14:03:36 +01:00
|
|
|
*
|
2005-02-16 00:22:10 +01:00
|
|
|
* @param string $app='etemplate' app to scan
|
|
|
|
* @return string comma delimited list of new found extensions
|
2005-02-13 14:03:36 +01:00
|
|
|
*/
|
2002-05-13 23:30:46 +02:00
|
|
|
function scan_for_extensions($app='etemplate')
|
|
|
|
{
|
2005-02-16 00:22:10 +01:00
|
|
|
if (!is_array($this->extensions)) $this->extensions = array();
|
|
|
|
|
|
|
|
if (isset($this->extensions['**loaded**'][$app])) return ''; // already loaded
|
|
|
|
|
|
|
|
$labels = array();
|
2002-05-13 23:30:46 +02:00
|
|
|
$dir = @opendir(PHPGW_SERVER_ROOT.'/'.$app.'/inc');
|
|
|
|
while ($dir && ($file = readdir($dir)))
|
|
|
|
{
|
|
|
|
if (ereg('class\\.([a-zA-Z0-9_]*)_widget.inc.php',$file,$regs) &&
|
2005-02-22 22:02:26 +01:00
|
|
|
($regs[1] != 'xslt' || $this->etemplate->xslt) &&
|
|
|
|
($ext = $this->etemplate->loadExtension($regs[1].'.'.$app,$this->etemplate)))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2002-10-02 02:44:33 +02:00
|
|
|
if (is_array($ext))
|
|
|
|
{
|
2005-02-16 00:22:10 +01:00
|
|
|
$this->extensions += $ext;
|
|
|
|
$labels += $ext;
|
2002-10-02 02:44:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-02-16 00:22:10 +01:00
|
|
|
$this->extensions[$regs[1]] = $ext;
|
|
|
|
$labels[] = $ext;
|
2002-10-02 02:44:33 +02:00
|
|
|
}
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
// store the information in the session, our constructor loads it from there
|
|
|
|
$GLOBALS['phpgw']->session->appsession('extensions','etemplate',$this->extensions);
|
|
|
|
$apps_loaded = $GLOBALS['phpgw']->session->appsession('apps_loaded','etemplate');
|
|
|
|
$apps_loaded[$app] = true;
|
|
|
|
$GLOBALS['phpgw']->session->appsession('apps_loaded','etemplate',$apps_loaded);
|
|
|
|
//_debug_array($this->extensions); _debug_array($apps_loaded);
|
|
|
|
|
|
|
|
return implode(', ',$labels);
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2002-02-14 15:06:53 +01:00
|
|
|
};
|