forked from extern/egroupware
Revert accidentally commited devel stuff
This commit is contained in:
parent
587418fca2
commit
a5e904faa1
@ -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
|
||||
*
|
||||
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
@ -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');
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user