2002-02-06 10:03:11 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-10-07 23:53:10 +02:00
|
|
|
* eGroupWare - EditableTemplates - Business Objects *
|
2003-12-10 02:21:31 +01:00
|
|
|
* 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$ */
|
|
|
|
|
2002-09-29 10:50:18 +02:00
|
|
|
include_once(PHPGW_INCLUDE_ROOT . '/etemplate/inc/class.soetemplate.inc.php');
|
2002-02-06 10:03:11 +01:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* Business Object for eTemplates, extending the Storage Object
|
|
|
|
*
|
|
|
|
* Not so much so far, as the most logic is still in the UI-class
|
|
|
|
*
|
|
|
|
* @package etemplate
|
|
|
|
* @author RalfBecker-AT-outdoor-training.de
|
|
|
|
* @license GPL
|
|
|
|
*/
|
2002-02-06 10:03:11 +01:00
|
|
|
class boetemplate extends soetemplate
|
|
|
|
{
|
2002-05-13 23:30:46 +02:00
|
|
|
var $extensions = array();
|
|
|
|
|
2002-02-06 10:03:11 +01:00
|
|
|
var $types = array(
|
2002-02-14 15:06:53 +01:00
|
|
|
'label' => 'Label', // Label $cell['label'] is (to be translated) textual content
|
|
|
|
'text' => 'Text', // Textfield 1 Line (size = [length][,maxlength])
|
2005-02-06 16:49:50 +01:00
|
|
|
'int' => 'Integer', // like text, but only numbers (size = [min][,max])
|
2002-02-14 15:06:53 +01:00
|
|
|
'float' => 'Floating Point', // --------------- " --------------------------
|
2002-10-09 02:31:01 +02:00
|
|
|
'textarea'=> 'Textarea', // Multiline Text Input (size = [rows][,cols])
|
2004-02-28 23:41:32 +01:00
|
|
|
'htmlarea' => 'Formatted Text (HTML)',
|
2002-02-06 10:03:11 +01:00
|
|
|
'checkbox'=> 'Checkbox',
|
|
|
|
'radio' => 'Radiobutton', // Radiobutton (size = value if checked)
|
2005-02-06 16:49:50 +01:00
|
|
|
'button'=> 'Submitbutton',
|
2002-02-06 10:03:11 +01:00
|
|
|
'hrule' => 'Horizontal Rule',
|
2005-02-06 16:49:50 +01:00
|
|
|
'template' => 'Template', // $cell['name'] contains template-name, $cell['size'] index into $content,$cname,$readonlys
|
2002-10-09 02:31:01 +02:00
|
|
|
'image' => 'Image', // label = url, name=link or method, help=alt or title
|
|
|
|
'date' => '', // Datefield, size='' timestamp or size=format like 'm/d/Y'
|
2005-02-06 16:49:50 +01:00
|
|
|
'select'=> 'Selectbox', // Selectbox ($sel_options[$name] or $content[options-$name] is array with options)
|
|
|
|
// if size > 1 then multiple selections, size lines showed
|
2002-10-09 02:31:01 +02:00
|
|
|
'html' => 'Html', // Raw html in $content[$cell['name']]
|
2002-10-12 18:37:44 +02:00
|
|
|
'file' => 'FileUpload', // show an input type='file', set the local name as ${name}_path
|
|
|
|
'vbox' => 'VBox', // a (vertical) box to contain widgets in rows, size = # of rows
|
2003-03-28 00:47:03 +01:00
|
|
|
'hbox' => 'HBox', // a (horizontal) box to contain widgets in cols, size = # of cols
|
2005-02-06 16:49:50 +01:00
|
|
|
'groupbox' => 'GroupBox', // a box with a label containing other elements to group them (html: fieldset)
|
2005-02-08 13:29:06 +01:00
|
|
|
'box' => 'Box', // just a container for widgets (html: div)
|
2005-02-06 16:49:50 +01:00
|
|
|
// 'grid' => 'Grid', // tabular widget containing rows with columns of widgets
|
2003-03-28 00:47:03 +01:00
|
|
|
'deck' => 'Deck' // a container of elements where only one is visible, size = # of elem.
|
2002-02-06 10:03:11 +01:00
|
|
|
);
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* constructor of class
|
|
|
|
*
|
|
|
|
* Calls the constructor of soetemplate
|
|
|
|
*
|
|
|
|
* @param $name string/array name of etemplate or array with name and other keys
|
|
|
|
* @param $load_via string/array name or array with keys of other etemplate to load in order to get $name
|
|
|
|
*/
|
2002-09-25 18:36:07 +02:00
|
|
|
function boetemplate($name='',$load_via='')
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2002-09-25 18:36:07 +02:00
|
|
|
$this->soetemplate();
|
|
|
|
|
2002-10-06 10:50:23 +02:00
|
|
|
$tname = &$name;
|
|
|
|
if (is_array($name))
|
|
|
|
{
|
|
|
|
$tname = &$name['name'];
|
|
|
|
}
|
2002-10-08 02:06:14 +02:00
|
|
|
$tname = (strstr($tname,'.') === False && !empty($tname) ?
|
|
|
|
(is_array($load_via) ? $load_via['name'] : $load_via).'.':'').$tname;
|
2002-10-06 10:50:23 +02:00
|
|
|
|
2002-10-08 02:06:14 +02:00
|
|
|
if (empty($tname) || !$this->read($name,'','',0,'',$load_via))
|
2002-09-25 18:36:07 +02:00
|
|
|
{
|
|
|
|
$this->init($name);
|
|
|
|
}
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
|
2005-02-08 13:29:06 +01:00
|
|
|
/**
|
|
|
|
* checks if a grid row or column is disabled
|
|
|
|
*
|
|
|
|
* Expression: [!][@]val[=[@]check]
|
|
|
|
* Parts in square brackets are optional, a ! negates the expression, @val evaluates to $content['val']
|
|
|
|
* if no =check is given all set non-empty and non-zero strings are true (standard php behavior)
|
|
|
|
*
|
|
|
|
* @param string $disabled expression to check, eg. "!@var" for !$content['var']
|
|
|
|
* @param array $content the content-array in the context of the grid
|
|
|
|
* @return boolean true if the row/col is disabled or false if not
|
|
|
|
*/
|
|
|
|
function check_disabled($disabled,$content)
|
|
|
|
{
|
|
|
|
//return False;
|
|
|
|
if ($not = $disabled[0] == '!')
|
|
|
|
{
|
|
|
|
$disabled = substr($disabled,1);
|
|
|
|
}
|
|
|
|
list($val,$check_val) = $vals = explode('=',$disabled);
|
|
|
|
|
|
|
|
if ($val[0] == '@')
|
|
|
|
{
|
|
|
|
$val = $this->get_array($content,substr($val,1));
|
|
|
|
}
|
|
|
|
if ($check_val[0] == '@')
|
|
|
|
{
|
|
|
|
$check_val = $this->get_array($content,substr($check_val,1));
|
|
|
|
}
|
|
|
|
$result = count($vals) == 1 ? $val != '' : $val == $check_val;
|
|
|
|
if ($not) $result = !$result;
|
|
|
|
//echo "<p>check_disabled: '".($not?'!':'')."$disabled' = '$val' ".(count($vals) == 1 ? '' : ($not?'!':'=')."= '$check_val'")." = ".($result?'True':'False')."</p>\n";
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* allows a few variables (eg. row-number) to be used in field-names
|
|
|
|
*
|
|
|
|
* This is mainly used for autorepeat, but other use is possible.
|
|
|
|
* You need to be aware of the rules PHP uses to expand vars in strings, a name
|
|
|
|
* of "Row$row[length]" will expand to 'Row' as $row is scalar, you need to use
|
|
|
|
* "Row${row}[length]" instead. Only one indirection is allowd in a string by php !!!
|
|
|
|
* Out of that reason we have now the variable $row_cont, which is $cont[$row] too.
|
|
|
|
* Attention !!!
|
|
|
|
* Using only number as index in field-names causes a lot trouble, as depending
|
|
|
|
* on the variable type (which php determines itself) you used filling and later
|
|
|
|
* accessing the array it can by the index or the key of an array element.
|
|
|
|
* To make it short and clear, use "Row$row" or "$col$row" not "$row" or "$row$col" !!!
|
|
|
|
*
|
|
|
|
* @param $name sring the name to expand
|
|
|
|
* @param $c int is the column index starting with 0 (if you have row-headers, data-cells start at 1)
|
|
|
|
* @param $row int is the row number starting with 0 (if you have col-headers, data-cells start at 1)
|
|
|
|
* @param $c_, $row_ int are the respective values of the previous template-inclusion,
|
|
|
|
* eg. the column-headers in the eTemplate-editor are templates itself,
|
|
|
|
* to show the column-name in the header you can not use $col as it will
|
|
|
|
* be constant as it is always the same col in the header-template,
|
|
|
|
* what you want is the value of the previous template-inclusion.
|
|
|
|
* @param $cont array content of the template, you might use it to generate button-names with id values in it:
|
|
|
|
* "del[$cont[id]]" expands to "del[123]" if $cont = array('id' => 123)
|
|
|
|
* @return string the expanded name
|
|
|
|
*/
|
2002-02-06 10:03:11 +01:00
|
|
|
function expand_name($name,$c,$row,$c_='',$row_='',$cont='')
|
|
|
|
{
|
2004-04-05 02:00:40 +02:00
|
|
|
$is_index_in_content = $name[0] == '@';
|
2002-10-18 00:10:12 +02:00
|
|
|
if (strstr($name,'$') !== False)
|
2002-10-14 02:39:47 +02:00
|
|
|
{
|
2002-10-18 00:10:12 +02:00
|
|
|
if (!$cont)
|
|
|
|
{
|
|
|
|
$cont = array();
|
|
|
|
}
|
|
|
|
$col = $this->num2chrs($c-1); // $c-1 to get: 0:'@', 1:'A', ...
|
|
|
|
$col_ = $this->num2chrs($c_-1);
|
|
|
|
$row_cont = $cont[$row];
|
|
|
|
$col_row_cont = $cont[$col.$row];
|
|
|
|
|
|
|
|
eval('$name = "'.$name.'";');
|
2002-10-14 02:39:47 +02:00
|
|
|
}
|
2004-04-05 02:00:40 +02:00
|
|
|
if ($is_index_in_content)
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2002-10-18 00:10:12 +02:00
|
|
|
$name = $this->get_array($cont,substr($name,1));
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* Checks if we have an row- or column autorepeat and sets the indexes for $content, etc.
|
|
|
|
*
|
|
|
|
* Autorepeat is important to allow a variable numer of rows or cols, eg. for a list.
|
|
|
|
* The eTemplate has only one (have to be the last) row or column, which gets
|
|
|
|
* automaticaly repeated as long as content is availible. To check this the content
|
|
|
|
* has to be in an sub-array of content. The index / subscript into content is
|
|
|
|
* determined by the content of size for templates or name for regular fields.
|
|
|
|
* An autorepeat is defined by an index which contains variables to expand.
|
|
|
|
* (vor variable expansion in names see expand_names). Usually I use the keys
|
|
|
|
* $row: 0, 1, 2, 3, ... for only rows, $col: '@', 'A', 'B', 'C', ... for only cols or
|
|
|
|
* $col$row: '@0','A0',... '@1','A1','B1',... '@2','A2','B2',... for both rows and cells.
|
|
|
|
* In general everything expand_names can generate is ok - see there.
|
|
|
|
* As you usually have col- and row-headers, data-cells start with '1' or 'A' !!!
|
|
|
|
*
|
|
|
|
* @param $cell array with data of cell: name, type, size, ...
|
|
|
|
* @param $c,$r int col/row index starting from 0
|
|
|
|
* @param &$idx string returns the index in $content and $readonlys (NOT $sel_options !!!)
|
|
|
|
* @param &$idx_cname string returns the basename for the form-name: is $idx if only one value
|
|
|
|
* @param (no ',') is given in size (name (not template-fields) are always only one value)
|
|
|
|
* @param $check_col boolean to check for col- or row-autorepeat
|
|
|
|
* @return boolean true if cell is autorepeat (has index with vars / '$') or false otherwise
|
|
|
|
*/
|
2002-02-06 10:03:11 +01:00
|
|
|
function autorepeat_idx($cell,$c,$r,&$idx,&$idx_cname,$check_col=False)
|
|
|
|
{
|
|
|
|
$org_idx = $idx = $cell[ $cell['type'] == 'template' ? 'size' : 'name' ];
|
|
|
|
|
|
|
|
$idx = $this->expand_name($idx,$c,$r);
|
|
|
|
if (!($komma = strpos($idx,',')))
|
|
|
|
{
|
|
|
|
$idx_cname = $idx;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$idx_cname = substr($idx,1+$komma);
|
|
|
|
$idx = substr($idx,0,$komma);
|
|
|
|
}
|
|
|
|
$Ok = False;
|
|
|
|
$pat = $org_idx;
|
|
|
|
while (!$Ok && ($pat = strstr($pat,'$')))
|
|
|
|
{
|
|
|
|
$pat = substr($pat,$pat[1] == '{' ? 2 : 1);
|
|
|
|
|
|
|
|
if ($check_col)
|
|
|
|
{
|
|
|
|
$Ok = $pat[0] == 'c' && !(substr($pat,0,4) == 'cont' ||
|
2002-02-14 15:06:53 +01:00
|
|
|
substr($pat,0,2) == 'c_' || substr($pat,0,4) == 'col_');
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-10-12 18:37:44 +02:00
|
|
|
$Ok = $pat[0] == 'r' && !(substr($pat,0,2) == 'r_' ||
|
|
|
|
substr($pat,0,4) == 'row_' && substr($pat,0,8) != 'row_cont');
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
}
|
2002-02-18 14:50:24 +01:00
|
|
|
if ($this->name && $this->name == $this->debug)
|
2002-02-06 10:03:11 +01:00
|
|
|
{
|
2003-10-26 13:59:01 +01:00
|
|
|
echo "$this->name ".($check_col ? 'col' : 'row')."-check: c=$c, r=$r, idx='$org_idx'='$idx' idx_cname='$idx_cname' ==> ".($Ok?'True':'False')."<p>\n";
|
2002-02-06 10:03:11 +01:00
|
|
|
}
|
|
|
|
return $Ok;
|
|
|
|
}
|
2002-02-17 20:09:15 +01:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* creates a new appsession-id via microtime()
|
|
|
|
*/
|
2002-06-09 23:34:21 +02:00
|
|
|
function appsession_id()
|
|
|
|
{
|
|
|
|
list($msec,$sec) = explode(' ',microtime());
|
|
|
|
$id = $GLOBALS['phpgw_info']['flags']['currentapp'] . (intval(1000000 * $msec) + 1000000 * ($sec % 100000));
|
|
|
|
//echo "<p>microtime()=".microtime().", sec=$sec, msec=$msec, id=$id</p>\n";
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* db-sessions appsession function, not longer used !!!
|
|
|
|
*
|
|
|
|
* It was used to overcome the problem with overflowing php4-sessions, which seems to not exist any more !!!
|
|
|
|
* @depricated
|
|
|
|
*/
|
2003-08-28 16:31:11 +02:00
|
|
|
function appsession($location = 'default', $appname = '', $data = '##NOTHING##')
|
|
|
|
{
|
|
|
|
// use the version from the sessions-class if we use db-sessions
|
|
|
|
//
|
|
|
|
if ($GLOBALS['phpgw_info']['server']['sessions_type'] == 'db')
|
|
|
|
{
|
|
|
|
return $GLOBALS['phpgw']->session->appsession($location,$appname,$data);
|
|
|
|
}
|
|
|
|
// if not, we use or own copy of the appsessions function
|
|
|
|
// setting these class vars to be compatible with the session-class
|
|
|
|
//
|
|
|
|
$this->sessionid = $GLOBALS['phpgw']->session->sessionid;
|
|
|
|
$this->account_id = $GLOBALS['phpgw']->session->account_id;
|
|
|
|
|
|
|
|
if (! $appname)
|
|
|
|
{
|
|
|
|
$appname = $GLOBALS['phpgw_info']['flags']['currentapp'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($data == '##NOTHING##')
|
|
|
|
{
|
|
|
|
$query = "SELECT content FROM phpgw_app_sessions WHERE"
|
|
|
|
." sessionid='".$this->sessionid."' AND loginid='".$this->account_id."'"
|
|
|
|
." AND app = '".$appname."' AND location='".$location."'";
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->db->query($query,__LINE__,__FILE__);
|
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
|
|
|
|
|
|
|
// I added these into seperate steps for easier debugging
|
|
|
|
$data = $GLOBALS['phpgw']->db->f('content');
|
|
|
|
// Changed by Skeeter 2001 Mar 04 0400Z
|
|
|
|
// This was not properly decoding structures saved into session data properly
|
|
|
|
// $data = $GLOBALS['phpgw']->common->decrypt($data);
|
|
|
|
// return stripslashes($data);
|
|
|
|
// Changed by milosch 2001 Dec 20
|
|
|
|
// do not stripslashes here unless this proves to be a problem.
|
|
|
|
// Changed by milosch 2001 Dec 25
|
|
|
|
/* do not decrypt and return if no data (decrypt returning garbage) */
|
|
|
|
if($data)
|
|
|
|
{
|
|
|
|
$data = $GLOBALS['phpgw']->crypto->decrypt($data);
|
|
|
|
// echo 'appsession returning: '; _debug_array($data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->db->query("SELECT content FROM phpgw_app_sessions WHERE "
|
|
|
|
. "sessionid = '".$this->sessionid."' AND loginid = '".$this->account_id."'"
|
|
|
|
. " AND app = '".$appname."' AND location = '".$location."'",__LINE__,__FILE__);
|
|
|
|
|
|
|
|
$encrypteddata = $GLOBALS['phpgw']->crypto->encrypt($data);
|
|
|
|
$encrypteddata = $GLOBALS['phpgw']->db->db_addslashes($encrypteddata);
|
|
|
|
|
|
|
|
if ($GLOBALS['phpgw']->db->num_rows()==0)
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->db->query("INSERT INTO phpgw_app_sessions (sessionid,loginid,app,location,content,session_dla) "
|
|
|
|
. "VALUES ('".$this->sessionid."','".$this->account_id."','".$appname
|
|
|
|
. "','".$location."','".$encrypteddata."','" . time() . "')",__LINE__,__FILE__);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->db->query("UPDATE phpgw_app_sessions SET content='".$encrypteddata."'"
|
|
|
|
. "WHERE sessionid = '".$this->sessionid."'"
|
|
|
|
. "AND loginid = '".$this->account_id."' AND app = '".$appname."'"
|
|
|
|
. "AND location = '".$location."'",__LINE__,__FILE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// we need to clean up not longer used records, else the db gets bigger and bigger
|
|
|
|
//
|
|
|
|
$GLOBALS['phpgw']->db->query("DELETE FROM phpgw_app_sessions WHERE session_dla <= '" . (time() - $GLOBALS['phpgw_info']['server']['sessions_timeout'])
|
|
|
|
. "'",__LINE__,__FILE__);
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* saves content,readonlys,template-keys, ... via the appsession function
|
|
|
|
*
|
|
|
|
* As a user may open several windows with the same content/template wie generate a location-id from microtime
|
|
|
|
* which is used as location for appsession to descriminate between the different windows. This location-id
|
|
|
|
* is then saved as a hidden-var in the form. The above mentions session-id has nothing to do / is different
|
|
|
|
* from the session-id which is constant for all windows opened in one session.
|
|
|
|
*
|
|
|
|
* @param $data array the data to save
|
|
|
|
* @param $id string the id to use or '' to generate a new id
|
|
|
|
* @return string location-id
|
|
|
|
*/
|
2002-06-09 23:34:21 +02:00
|
|
|
function save_appsession($data,$id='')
|
2002-02-17 20:09:15 +01:00
|
|
|
{
|
2002-06-09 23:34:21 +02:00
|
|
|
if (!$id)
|
|
|
|
{
|
|
|
|
$id = $this->appsession_id;
|
|
|
|
}
|
2004-08-15 22:59:49 +02:00
|
|
|
$GLOBALS['phpgw']->session->appsession($id,'etemplate',$data);
|
2002-02-17 20:09:15 +01:00
|
|
|
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* gets content,readonlys,template-keys, ... back from the appsession function
|
|
|
|
*
|
|
|
|
* @param $id the location-id
|
|
|
|
* @return array with session-data
|
|
|
|
*/
|
2002-02-17 20:09:15 +01:00
|
|
|
function get_appsession($id)
|
|
|
|
{
|
2004-08-15 22:59:49 +02:00
|
|
|
$data = $GLOBALS['phpgw']->session->appsession($id,'etemplate');
|
2002-02-17 20:09:15 +01:00
|
|
|
|
|
|
|
//echo "<p>get_appsession('$id') data="; _debug_array($data);
|
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
// if we delete the returned value here, we cant get back (back-button),
|
|
|
|
// not even to a non-submitted page
|
|
|
|
//$GLOBALS['phpgw']->session->appsession_delete($id,'etemplate');
|
|
|
|
|
2002-02-17 20:09:15 +01:00
|
|
|
return $data;
|
|
|
|
}
|
2002-05-11 17:16:23 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* gets an attribute in a named cell
|
|
|
|
*
|
|
|
|
* @param $name string cell-name
|
|
|
|
* @param $attr string attribute-name
|
|
|
|
* @return mixed the attribute or False if named cell not found
|
|
|
|
*/
|
2002-06-15 14:52:33 +02:00
|
|
|
function get_cell_attribute($name,$attr)
|
|
|
|
{
|
2004-04-12 14:29:40 +02:00
|
|
|
return $this->set_cell_attribute($name,$attr,NULL);
|
2002-06-15 14:52:33 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* set an attribute in a named cell if val is not NULL else return the attribute
|
|
|
|
*
|
|
|
|
* @param $name sting cell-name
|
|
|
|
* @param $attr attribute-name
|
|
|
|
* @param $val mixed if not NULL sets attribute else returns it
|
|
|
|
* @return mixed number of changed cells or False, if none changed
|
|
|
|
*/
|
2002-06-15 14:52:33 +02:00
|
|
|
function set_cell_attribute($name,$attr,$val)
|
|
|
|
{
|
2002-09-18 16:15:04 +02:00
|
|
|
//echo "<p>set_cell_attribute(tpl->name=$this->name, name='$name', attr='$attr',val='$val')</p>\n";
|
|
|
|
|
2004-04-12 14:29:40 +02:00
|
|
|
$n = False;
|
2003-08-28 16:31:11 +02:00
|
|
|
foreach($this->data as $row => $cols)
|
2002-06-15 14:52:33 +02:00
|
|
|
{
|
2005-02-08 13:29:06 +01:00
|
|
|
if (!is_array($cols)) // should never happen
|
|
|
|
{
|
|
|
|
echo "<p>set_cell_attribute(tpl->name=$this->name, name='$name', attr='$attr',val='$val') <b>cols not set for row '$row'</b></p>\n";
|
|
|
|
$this->echo_tmpl();
|
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
foreach($cols as $col => $cell)
|
2002-06-15 14:52:33 +02:00
|
|
|
{
|
|
|
|
if ($cell['name'] == $name)
|
|
|
|
{
|
2004-04-12 14:29:40 +02:00
|
|
|
if (is_null($val))
|
|
|
|
{
|
|
|
|
return $cell[$attr];
|
|
|
|
}
|
2002-06-15 14:52:33 +02:00
|
|
|
$this->data[$row][$col][$attr] = $val;
|
|
|
|
++$n;
|
|
|
|
}
|
2004-04-12 14:29:40 +02:00
|
|
|
switch($cell['type'])
|
2002-05-11 17:16:23 +02:00
|
|
|
{
|
2004-04-12 14:29:40 +02:00
|
|
|
case 'template':
|
|
|
|
if (is_object($cell['obj']) || $cell['name'][0] != '@')
|
|
|
|
{
|
|
|
|
if (!is_object($cell['obj']))
|
|
|
|
{
|
|
|
|
$this->data[$row][$col]['obj'] = CreateObject('etemplate.etemplate',$cell['name']);
|
|
|
|
}
|
|
|
|
$ret = $this->data[$row][$col]['obj']->set_cell_attribute($name,$attr,$val);
|
|
|
|
if (is_int($ret))
|
|
|
|
{
|
|
|
|
$n += $ret;
|
|
|
|
}
|
|
|
|
elseif ($ret !== False && is_null($val))
|
|
|
|
{
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'vbox':
|
|
|
|
case 'hbox':
|
2005-02-08 13:29:06 +01:00
|
|
|
case 'groupbox':
|
|
|
|
case 'box':
|
2004-04-12 14:29:40 +02:00
|
|
|
for ($i = 0; $i < (int)$cell['size']; ++$i)
|
|
|
|
{
|
|
|
|
if ($cell[$i]['name'] == $name)
|
|
|
|
{
|
|
|
|
if (is_null($val))
|
|
|
|
{
|
|
|
|
return $cell[$attr];
|
|
|
|
}
|
|
|
|
$this->data[$row][$col][$i][$attr] = $val;
|
|
|
|
++$n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2002-05-11 17:16:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $n;
|
|
|
|
}
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* disables all cells with name == $name
|
|
|
|
*
|
|
|
|
* @param $name sting cell-name
|
|
|
|
* @return mixed number of changed cells or False, if none changed
|
|
|
|
*/
|
2002-06-15 14:52:33 +02:00
|
|
|
function disable_cells($name)
|
|
|
|
{
|
|
|
|
return $this->set_cell_attribute($name,'disabled',True);
|
|
|
|
}
|
2003-04-21 22:29:18 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* set one or more attibutes for row $n
|
|
|
|
*
|
|
|
|
* @param $n int numerical row-number starting with 1 (!)
|
|
|
|
* @param $height string percent or pixel or '' for no height
|
|
|
|
* @param $class string name of css class (without the leading '.') or '' for no class
|
|
|
|
* @param $valign string alignment (top,middle,bottom) or '' for none
|
|
|
|
* @param $disabled boolean True or expression or False to disable or enable the row (Only the number 0 means dont change the attribute !!!)
|
|
|
|
*/
|
2003-08-28 16:31:11 +02:00
|
|
|
function set_row_attributes($n,$height=0,$class=0,$valign=0,$disabled=0)
|
|
|
|
{
|
|
|
|
list($old_height,$old_disabled) = explode(',',$this->data[0]["h$n"]);
|
|
|
|
$disabled = $disabled !== 0 ? $disabled : $old_disabled;
|
|
|
|
$this->data[0]["h$n"] = ($height !== 0 ? $height : $old_height).
|
|
|
|
($disabled ? ','.$disabled : '');
|
|
|
|
list($old_class,$old_valign) = explode(',',$this->data[0]["c$n"]);
|
|
|
|
$valign = $valign !== 0 ? $valign : $old_valign;
|
|
|
|
$this->data[0]["c$n"] = ($class !== 0 ? $class : $old_class).
|
|
|
|
($valign ? ','.$valign : '');
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* disables row $n
|
|
|
|
*
|
|
|
|
* @param $n int numerical row-number starting with 1 (!)
|
|
|
|
* @param $enable boolean can be used to re-enable a row if set to True
|
|
|
|
*/
|
2003-04-21 22:29:18 +02:00
|
|
|
function disable_row($n,$enable=False)
|
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$this->set_row_attributes($n,0,0,0,!$enable);
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* set one or more attibutes for column $c
|
|
|
|
*
|
|
|
|
* @param $c int/string numerical column-number starting with 0 (!), or the char-code starting with 'A'
|
|
|
|
* @param $width string percent or pixel or '' for no height
|
|
|
|
* @param $disabled boolean True or expression or False to disable or enable the column (Only the number 0 means dont change the attribute !!!)
|
|
|
|
*/
|
2003-08-28 16:31:11 +02:00
|
|
|
function set_column_attributes($c,$width=0,$disabled=0)
|
|
|
|
{
|
|
|
|
if (is_numeric($c))
|
|
|
|
{
|
|
|
|
$c = $this->num2chrs($c);
|
|
|
|
}
|
|
|
|
list($old_width,$old_disabled) = explode(',',$this->data[0][$c]);
|
|
|
|
$disabled = $disabled !== 0 ? $disabled : $old_disabled;
|
|
|
|
$this->data[0][$c] = ($width !== 0 ? $width : $old_width).
|
|
|
|
($disabled ? ','.$disabled : '');
|
2003-04-21 22:29:18 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* disables column $c
|
|
|
|
* @param $c int/string numerical column-number starting with 0 (!), or the char-code starting with 'A'
|
|
|
|
* @param $enable can be used to re-enable a column if set to True
|
2003-04-21 22:29:18 +02:00
|
|
|
*/
|
|
|
|
function disable_column($c,$enable=False)
|
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$this->set_column_attributes($c,0,!$enable);
|
2003-04-21 22:29:18 +02:00
|
|
|
}
|
2002-06-15 14:52:33 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* trys to load the Extension / Widget-class from the app or etemplate
|
|
|
|
*
|
|
|
|
* @param $name string name of the extension, the classname should be class.${name}_widget.inc.php
|
|
|
|
* the $name might be "$name.$app" to give a app-name (default is the current app,or template-name)
|
|
|
|
* @return string/boolean human readable name or false if not found/loadable
|
|
|
|
*/
|
2002-09-27 18:17:39 +02:00
|
|
|
function loadExtension($type)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2002-09-27 18:17:39 +02:00
|
|
|
list($class,$app) = explode('.',$type);
|
2002-05-13 23:30:46 +02:00
|
|
|
$class .= '_widget';
|
|
|
|
|
|
|
|
if ($app == '')
|
|
|
|
{
|
|
|
|
$app = $GLOBALS['phpgw_info']['flags']['current_app'];
|
|
|
|
}
|
|
|
|
if (!file_exists(PHPGW_SERVER_ROOT."/$app/inc/class.$class.inc.php"))
|
2002-09-02 19:09:49 +02:00
|
|
|
{
|
|
|
|
list($app) = explode('.',$this->name);
|
|
|
|
}
|
|
|
|
if (!file_exists(PHPGW_SERVER_ROOT."/$app/inc/class.$class.inc.php"))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
|
|
|
$app = 'etemplate';
|
|
|
|
}
|
|
|
|
if (!file_exists(PHPGW_SERVER_ROOT."/$app/inc/class.$class.inc.php"))
|
|
|
|
{
|
2002-09-27 18:17:39 +02:00
|
|
|
return $GLOBALS['phpgw_info']['etemplate']['extension'][$type] = False;
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2002-09-27 18:17:39 +02:00
|
|
|
$GLOBALS['phpgw_info']['etemplate']['extension'][$type] = CreateObject($app.'.'.$class,$ui='html');
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2002-09-27 18:17:39 +02:00
|
|
|
return $GLOBALS['phpgw_info']['etemplate']['extension'][$type]->human_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
function haveExtension($type,$function='')
|
|
|
|
/*
|
2004-10-07 23:53:10 +02:00
|
|
|
* checks if extension is loaded and load it if it isnt
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2002-09-27 18:17:39 +02:00
|
|
|
{
|
|
|
|
return ($GLOBALS['phpgw_info']['etemplate']['extension'][$type] || $this->loadExtension($type,$ui)) &&
|
|
|
|
($function == '' || $GLOBALS['phpgw_info']['etemplate']['extension'][$type]->public_functions[$function]);
|
|
|
|
}
|
|
|
|
|
2002-10-01 20:26:30 +02:00
|
|
|
function extensionPreProcess($type,$name,&$value,&$cell,&$readonlys)
|
2002-09-27 18:17:39 +02:00
|
|
|
/*
|
2004-10-07 23:53:10 +02:00
|
|
|
* executes the pre_process-function of the extension $cell[]type]
|
|
|
|
*
|
|
|
|
* @param $type string type of the extension
|
|
|
|
* @param $name string form-name of this widget/field (used as a unique index into extension_data)
|
|
|
|
* @param &$cell array table-cell on which the extension operates
|
|
|
|
* @param &$value mixed value of the extensions content(-array)
|
|
|
|
* @param &$readonlys array value of the extensions readonly-setting(-array)
|
|
|
|
* @return mixed the return-value of the extensions preprocess function
|
|
|
|
*/
|
2002-09-27 18:17:39 +02:00
|
|
|
{
|
2002-10-01 20:26:30 +02:00
|
|
|
if (!$this->haveExtension($type))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2002-09-27 18:17:39 +02:00
|
|
|
return False;
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2002-10-01 20:26:30 +02:00
|
|
|
return $GLOBALS['phpgw_info']['etemplate']['extension'][$type]->pre_process($name,$value,$cell,$readonlys,
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['extension_data'][$name],$this);
|
2002-09-27 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2002-10-01 20:26:30 +02:00
|
|
|
function extensionPostProcess($type,$name,&$value,$value_in)
|
2002-09-27 18:17:39 +02:00
|
|
|
/*
|
2004-10-07 23:53:10 +02:00
|
|
|
* executes the post_process-function of the extension $cell[type]
|
|
|
|
*
|
|
|
|
* @param $type string name of the extension
|
|
|
|
* @param $name string form-name of this widget/field (used as a unique index into extension_data)
|
|
|
|
* @param &$value mixed value of the extensions content(-array)
|
|
|
|
* @return boolean True if a value should be returned (default for no postprocess fkt.), else False
|
|
|
|
*/
|
2002-09-27 18:17:39 +02:00
|
|
|
{
|
2002-10-01 20:26:30 +02:00
|
|
|
if (!$this->haveExtension($type,'post_process'))
|
2002-09-27 18:17:39 +02:00
|
|
|
{
|
2003-12-09 01:03:41 +01:00
|
|
|
return True;
|
2002-09-27 18:17:39 +02:00
|
|
|
}
|
2002-10-01 20:26:30 +02:00
|
|
|
return $GLOBALS['phpgw_info']['etemplate']['extension'][$type]->post_process($name,$value,
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['extension_data'][$name],
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['loop'],$this,$value_in);
|
2002-09-27 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2002-10-01 20:26:30 +02:00
|
|
|
function extensionRender($type,$name,&$value,&$cell,$readonly)
|
2002-09-27 18:17:39 +02:00
|
|
|
/*
|
2004-10-07 23:53:10 +02:00
|
|
|
* executes the render-function of the extension $cell[type]
|
|
|
|
* @return mixed return-value of the render function
|
|
|
|
*/
|
2002-09-27 18:17:39 +02:00
|
|
|
{
|
2002-10-01 20:26:30 +02:00
|
|
|
if (!$this->haveExtension($type,'render'))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2002-09-27 18:17:39 +02:00
|
|
|
return False;
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2002-10-01 20:26:30 +02:00
|
|
|
return $GLOBALS['phpgw_info']['etemplate']['extension'][$type]->render($cell,$name,$value,$readonly,
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['extension_data'][$name],$this);
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2002-06-02 23:10:24 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* checks if $idx is set in array $arr
|
|
|
|
*
|
|
|
|
* @param $arr array
|
|
|
|
* @param $idx string may contain multiple subindex (eg.'x[y][z]')
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2002-06-15 11:21:55 +02:00
|
|
|
function isset_array($arr,$idx)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2003-10-26 13:59:01 +01:00
|
|
|
$idxs = explode('[',str_replace(']','',$idx));
|
|
|
|
$last_idx = array_pop($idxs);
|
|
|
|
$pos = &$arr;
|
|
|
|
foreach($idxs as $idx)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2003-10-26 13:59:01 +01:00
|
|
|
if (!is_array($pos))
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
$pos = &$pos[$idx];
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2003-10-26 13:59:01 +01:00
|
|
|
return isset($pos[$last_idx]);
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* sets $arr[$idx] = $val
|
|
|
|
*
|
|
|
|
* This works for non-trival indexes like 'a[b][c]' too: $arr['a']['b']['c'] = $val;
|
|
|
|
*
|
|
|
|
* @param &$arr array the array to search
|
|
|
|
* @param $idx string the index, may contain sub-indices like a[b], see example below
|
|
|
|
* @param $val mixed
|
|
|
|
*/
|
2002-10-04 01:47:14 +02:00
|
|
|
function set_array(&$arr,$idx,$val)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2002-10-04 01:47:14 +02:00
|
|
|
if (!is_array($arr))
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
die('set_array() $arr is no array<br>'.function_backtrace());
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
$idxs = explode('[',str_replace(']','',$idx));
|
|
|
|
$pos = &$arr;
|
2003-10-26 13:59:01 +01:00
|
|
|
foreach($idxs as $idx)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2002-10-04 01:47:14 +02:00
|
|
|
$pos = &$pos[$idx];
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
$pos = $val;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* return a reference to $arr[$idx]
|
|
|
|
*
|
|
|
|
* This works for non-trival indexes like 'a[b][c]' too: it returns &$arr[a][b][c]
|
|
|
|
* $sub = get_array($arr,'a[b]'); $sub = 'c'; is equivalent to $arr['a']['b'] = 'c';
|
|
|
|
*
|
|
|
|
* @param $arr array the array to search, referenz as a referenz gets returned
|
|
|
|
* @param $idx string the index, may contain sub-indices like a[b], see example below
|
|
|
|
* @param $reference_into boolean default False, if True none-existing sub-arrays/-indices get created to be returned as referenz, else False is returned
|
|
|
|
* @return mixed reference to $arr[$idx] or false if $idx is not set and not $reference_into
|
|
|
|
*/
|
|
|
|
function &get_array(&$arr,$idx,$reference_into=False)
|
2002-10-04 01:47:14 +02:00
|
|
|
{
|
|
|
|
if (!is_array($arr))
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
die('set_array() $arr is no array<br>'.function_backtrace());
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
$idxs = explode('[',str_replace(']','',$idx));
|
|
|
|
$pos = &$arr;
|
2003-10-26 13:59:01 +01:00
|
|
|
foreach($idxs as $idx)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2003-12-10 02:21:31 +01:00
|
|
|
if (!is_array($pos) && !$referenz_info)
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
$pos = &$pos[$idx];
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
return $pos;
|
2002-10-01 20:26:30 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* unsets $arr[$idx]
|
|
|
|
*
|
|
|
|
* This works for non-trival indexes like 'a[b][c]' too
|
|
|
|
* unset_array($arr,'a[b]'); is equivalent to unset($arr['a']['b']);
|
|
|
|
*
|
|
|
|
* @param $arr array the array to search, referenz as a referenz gets returned
|
|
|
|
* @param $idx string the index, may contain sub-indices like a[b], see example below
|
|
|
|
*/
|
2002-10-01 20:26:30 +02:00
|
|
|
function unset_array(&$arr,$idx)
|
|
|
|
{
|
2002-10-04 01:47:14 +02:00
|
|
|
if (!is_array($arr))
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
die('set_array() $arr is no array<br>'.function_backtrace());
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-10-04 01:47:14 +02:00
|
|
|
$idxs = explode('[',str_replace(']','',$idx));
|
2003-10-26 13:59:01 +01:00
|
|
|
$last_idx = array_pop($idxs);
|
2002-10-04 01:47:14 +02:00
|
|
|
$pos = &$arr;
|
2003-10-26 13:59:01 +01:00
|
|
|
foreach($idxs as $idx)
|
2002-06-02 23:10:24 +02:00
|
|
|
{
|
2002-10-04 01:47:14 +02:00
|
|
|
$pos = &$pos[$idx];
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2003-10-26 13:59:01 +01:00
|
|
|
unset($pos[$last_idx]);
|
2002-06-02 23:10:24 +02:00
|
|
|
}
|
2002-06-09 23:34:21 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* merges $old and $new, content of $new has precedence over $old
|
|
|
|
*
|
|
|
|
* THIS IS NOT THE SAME AS PHP4's functions:
|
|
|
|
* - array_merge, as it calls itself recursive for values which are arrays.
|
|
|
|
* - array_merge_recursive accumulates values with the same index and $new does NOT overwrite $old
|
|
|
|
*
|
|
|
|
* @param $old array
|
|
|
|
* @param $new array
|
|
|
|
* @return array the merged array
|
|
|
|
*/
|
2002-06-09 23:34:21 +02:00
|
|
|
function complete_array_merge($old,$new)
|
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
if (is_array($new))
|
2002-06-09 23:34:21 +02:00
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
foreach($new as $k => $v)
|
2002-06-09 23:34:21 +02:00
|
|
|
{
|
2004-10-07 23:53:10 +02:00
|
|
|
if (!is_array($v) || !isset($old[$k]))
|
|
|
|
{
|
|
|
|
$old[$k] = $v;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$old[$k] = $this->complete_array_merge($old[$k],$v);
|
|
|
|
}
|
2002-06-09 23:34:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $old;
|
|
|
|
}
|
2002-09-22 10:05:17 +02:00
|
|
|
|
2002-09-24 12:00:58 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* generated a file-name from an eTemplates, name, template(-set) and lang
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2002-09-24 12:00:58 +02:00
|
|
|
function cache_name($name='',$template='default',$lang='default')
|
|
|
|
{
|
|
|
|
if (empty($name))
|
|
|
|
{
|
|
|
|
$name = $this->name;
|
|
|
|
$template = $this->template;
|
|
|
|
$lang = $this->lang;
|
|
|
|
}
|
|
|
|
elseif (is_array($name))
|
|
|
|
{
|
|
|
|
$template = $name['template'];
|
|
|
|
$lang = $name['lang'];
|
|
|
|
$name = $name['name'];
|
|
|
|
}
|
|
|
|
if (empty($template))
|
|
|
|
{
|
|
|
|
$template = 'default';
|
|
|
|
}
|
|
|
|
$cname = $template . '/' . $name . (!empty($lang) && $lang != 'default' ? '.' . $lang : '');
|
|
|
|
//echo "cache_name('$name','$template','$lang') = '$cname'";
|
|
|
|
|
|
|
|
return $cname;
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* stores the etemplate in the cache in phpgw_info
|
|
|
|
*/
|
2002-09-24 12:00:58 +02:00
|
|
|
function store_in_cache()
|
2002-09-22 10:05:17 +02:00
|
|
|
{
|
2002-09-24 12:00:58 +02:00
|
|
|
//echo "<p>store_in_cache('$this->name','$this->template','$this->lang','$this->version')</p>\n";
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['cache'][$this->cache_name()] = $this->as_array(1);
|
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/*
|
|
|
|
* returns true if a given eTemplate is in the cache
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2002-09-24 12:00:58 +02:00
|
|
|
function in_cache($name,$template='default',$lang='default',$group=0,$version='')
|
|
|
|
{
|
|
|
|
$cname = $this->cache_name($name,$template,$lang);
|
|
|
|
if (is_array($name))
|
|
|
|
{
|
|
|
|
$version = $name['version'];
|
|
|
|
$name = $name['name'];
|
|
|
|
}
|
|
|
|
if (!isset($GLOBALS['phpgw_info']['etemplate']['cache'][$cname]) ||
|
|
|
|
!empty($version) && $GLOBALS['phpgw_info']['etemplate']['cache'][$cname]['version'] != $version)
|
|
|
|
{
|
|
|
|
//echo " NOT found in cache</p>\n";
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
//echo " found in cache</p>\n";
|
|
|
|
return $cname;
|
|
|
|
}
|
2002-09-22 10:05:17 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/*
|
|
|
|
* reads the content of an eTemplate from the cache into the current object
|
|
|
|
*
|
|
|
|
* same as read but only via the cache
|
|
|
|
*
|
|
|
|
* @return boolean true if the eTemplate was found in the cache
|
|
|
|
*/
|
2002-09-24 12:00:58 +02:00
|
|
|
function read_from_cache($name,$template='default',$lang='default',$group=0,$version='')
|
|
|
|
{
|
|
|
|
//if (is_array($name)) $version = $name['version']; echo "<p>read_from_cache(,,,version='$version'): ";
|
|
|
|
if ($cname = $this->in_cache($name,$template,$lang,$group))
|
2002-09-22 10:05:17 +02:00
|
|
|
{
|
2002-09-25 18:36:07 +02:00
|
|
|
$this->init($GLOBALS['phpgw_info']['etemplate']['cache'][$cname]);
|
|
|
|
|
2002-09-22 10:05:17 +02:00
|
|
|
return True;
|
|
|
|
}
|
2002-09-24 12:00:58 +02:00
|
|
|
return False;
|
|
|
|
}
|
2002-09-22 10:05:17 +02:00
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* reads an eTemplate from the cache or database / filesystem (and updates the cache)
|
|
|
|
*
|
|
|
|
* reimplementation of soetemplate::read to use and/or update the cache
|
|
|
|
*
|
|
|
|
* @param $name string name of the eTemplate or array with the values for all keys
|
|
|
|
* @param $template string template-set, '' loads the prefered template of the user, 'default' loads the default one '' in the db
|
|
|
|
* @param $lang string language, '' loads the pref. lang of the user, 'default' loads the default one '' in the db
|
|
|
|
* @param $group int id of the (primary) group of the user or 0 for none, not used at the moment !!!
|
|
|
|
* @param $version string version of the eTemplate
|
|
|
|
* @param $load_via mixed name/array of keys of etemplate to load in order to get $name (only as second try!)
|
|
|
|
* @return boolean True if a fitting template is found, else False
|
|
|
|
*/
|
2002-09-25 18:36:07 +02:00
|
|
|
function read($name,$template='default',$lang='default',$group=0,$version='',$load_via='')
|
2002-09-24 12:00:58 +02:00
|
|
|
{
|
2002-10-14 02:39:47 +02:00
|
|
|
if (is_array($name)) {
|
|
|
|
$pname = &$name['name'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$pname = &$name;
|
|
|
|
}
|
|
|
|
if (empty($pname))
|
2002-09-29 18:12:52 +02:00
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
2002-10-14 02:39:47 +02:00
|
|
|
$parent = is_array($load_via) ? $load_via['name'] : $load_via;
|
2004-10-07 23:53:10 +02:00
|
|
|
|
|
|
|
if (strstr($pname,'.') === False && !empty($parent))
|
2002-10-14 02:39:47 +02:00
|
|
|
{
|
|
|
|
$pname = $parent . '.' . $pname;
|
|
|
|
}
|
2002-09-24 12:00:58 +02:00
|
|
|
if (!$this->read_from_cache($name,$template,$lang,$group,$version))
|
|
|
|
{
|
|
|
|
if (!soetemplate::read($name,$template,$lang,$group,$version))
|
|
|
|
{
|
2002-09-25 18:36:07 +02:00
|
|
|
if ($load_via && (is_string($load_via) ||
|
|
|
|
!isset($load_via['tpls_in_file']) || $load_via['tpls_in_file'] > 1))
|
|
|
|
{
|
|
|
|
soetemplate::read($load_via);
|
|
|
|
return $this->read_from_cache($name,$template,$lang,$group,$version);
|
|
|
|
}
|
2002-09-24 12:00:58 +02:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
$this->store_in_cache();
|
|
|
|
}
|
|
|
|
return True;
|
2002-09-22 10:05:17 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:53:10 +02:00
|
|
|
/**
|
|
|
|
* saves eTemplate-object to db and update the cache
|
|
|
|
*
|
|
|
|
* reimplementation of soetemplate::save to update the cache
|
|
|
|
*
|
|
|
|
* @param $name string name of the eTemplate or array with the values for all keys
|
|
|
|
* @param $template string template-set or '' for the default one
|
|
|
|
* @param $lang string language or '' for the default one
|
|
|
|
* @param $group int id of the (primary) group of the user or 0 for none, not used at the moment !!!
|
|
|
|
* @param $version string version of the eTemplate
|
|
|
|
* @return the number of affected rows, 1 should be ok, 0 somethings wrong
|
|
|
|
*/
|
|
|
|
function save($name='',$template='.',$lang='.',$group=0,$version='.')
|
2002-09-22 10:05:17 +02:00
|
|
|
{
|
2002-09-24 12:00:58 +02:00
|
|
|
if ($result = soetemplate::save($name,$template,$lang,$group,$version))
|
2002-09-22 10:05:17 +02:00
|
|
|
{
|
2002-09-24 12:00:58 +02:00
|
|
|
$this->store_in_cache();
|
2002-09-22 10:05:17 +02:00
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2004-10-07 23:53:10 +02:00
|
|
|
}
|