diff --git a/etemplate/inc/class.customfields_widget.inc.php b/etemplate/inc/class.customfields_widget.inc.php index 0c100ac67a..dad6cf9ff9 100644 --- a/etemplate/inc/class.customfields_widget.inc.php +++ b/etemplate/inc/class.customfields_widget.inc.php @@ -26,7 +26,6 @@ class customfields_widget { var $public_functions = array( 'pre_process' => True, - 'post_process' => True, ); var $human_name = array( 'customfields' => 'custom fields', @@ -113,16 +112,10 @@ class customfields_widget function pre_process($form_name,&$value,&$cell,&$readonlys,&$extension_data,etemplate $tmpl) { list($app) = explode('.',$tmpl->name); - if($extension_data['app']) $app = $extension_data['app']; // if we are in the etemplate editor or the app has no cf's, load the cf's from the app the tpl belongs too - if ($app && $app != 'stylite' && $app != $this->appname && ( - $this->appname == 'etemplate' || !$this->customfields || etemplate::$hooked || $extension_data['app'] - )) + if ($app && $app != 'stylite' && $app != $this->appname && ($this->appname == 'etemplate' || !$this->customfields || etemplate::$hooked)) { self::__construct(null,$app); // app changed - - // Need to keep hooked app for things like nm filter changes and validation errors - if(etemplate::$hooked) $extension_data['app'] = $app; } list($type2,$use_private,$field_names) = explode(',',$cell['size'],3); $fields_with_vals=array(); @@ -500,14 +493,6 @@ class customfields_widget return True; // extra Label is ok } - /** - * Override to pass along extension_data - doesn't happen otherwise - */ - public function post_process($name,&$value,&$extension_data,&$loop,etemplate &$tmpl,$value_in) { - $value = $value_in; - return true; - } - /** * Read the options of a 'select' or 'radio' custom field from a file * diff --git a/etemplate/inc/class.etemplate.inc.php b/etemplate/inc/class.etemplate.inc.php index 148ebc3348..cb792957ac 100644 --- a/etemplate/inc/class.etemplate.inc.php +++ b/etemplate/inc/class.etemplate.inc.php @@ -25,8 +25,6 @@ * * etemplate or uietemplate extends boetemplate, all vars and public functions are inherited */ -//class etemplate extends etemplate_new {} -//class etemplate_old extends boetemplate class etemplate extends boetemplate { /** diff --git a/etemplate/inc/class.etemplate_new.inc.php b/etemplate/inc/class.etemplate_new.inc.php index d61ece0788..eebbc42980 100644 --- a/etemplate/inc/class.etemplate_new.inc.php +++ b/etemplate/inc/class.etemplate_new.inc.php @@ -24,8 +24,6 @@ if (!isset($GLOBALS['egw_info'])) include_once '../../header.inc.php'; } -$GLOBALS['egw_info']['flags']['js_link_registry'] = true; - /** * New eTemplate serverside contains: * - main server methods like read, exec @@ -394,4 +392,4 @@ if ($GLOBALS['egw_info']['flags']['debug'] == 'etemplate_new') } $GLOBALS['egw_info']['flags']['app_header'] = $name; $template->exec('etemplate.etemplate.debug', array(), array(), array(), array(), 2); -} +} \ No newline at end of file diff --git a/etemplate/inc/class.etemplate_widget_customfields.inc.php b/etemplate/inc/class.etemplate_widget_customfields.inc.php index 6550d12890..3116a59283 100644 --- a/etemplate/inc/class.etemplate_widget_customfields.inc.php +++ b/etemplate/inc/class.etemplate_widget_customfields.inc.php @@ -86,9 +86,6 @@ class etemplate_widget_customfields extends etemplate_widget_transformer // Store properties at top level, so all customfield widgets can share $app =& $this->getElementAttribute(self::GLOBAL_VALS, 'app'); - // Value needs a text key, so it gets handled as a js object, not an array - //$this->setElementAttribute(self::GLOBAL_VALS, 'fields', Array('parse_as_object'=>null)); - $this->setElementAttribute(self::GLOBAL_VALS, 'fields', Array()); if($this->getElementAttribute($form_name, 'app')) { $app =& $this->getElementAttribute($form_name, 'app'); diff --git a/etemplate/inc/class.nextmatch_widget.inc.php b/etemplate/inc/class.nextmatch_widget.inc.php index e24b761288..98aaf9f1d9 100644 --- a/etemplate/inc/class.nextmatch_widget.inc.php +++ b/etemplate/inc/class.nextmatch_widget.inc.php @@ -1471,7 +1471,6 @@ class nextmatch_widget $value['start'] = 0; $value['num_rows'] = 500; $value['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session -$start = microtime(true); do { if (!($total = self::call_get_rows($value,$rows))) @@ -1506,7 +1505,6 @@ $start = microtime(true); } while($total > $value['start']); -$time = microtime(true) - $start; unset($value['csv_export']); $value['start'] = $backup_start; $value['num_rows'] = $backup_num_rows; @@ -1514,8 +1512,6 @@ $time = microtime(true) - $start; { self::call_get_rows($value); } -fwrite($fp, "\n\nExport time: " . round($time,3) . 's' ); - if ($fp) { fclose($fp);