mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
add eGW independent html output mode for new mail stationery feature sponsored by Inspections Unlimited Franchise services (http://www.inspectionsunlimited.com)
This commit is contained in:
parent
044cd984cc
commit
40372cba8f
@ -190,8 +190,12 @@ class etemplate extends boetemplate
|
||||
* @param array $readonlys with field-names as keys for fields with should be readonly
|
||||
* (eg. to implement ACL grants on field-level or to remove buttons not applicable)
|
||||
* @param array $preserv with vars which should be transported to the $method-call (eg. an id) array('id' => $id) sets $_POST['id'] for the $method-call
|
||||
* @param int $output_mode 0 = echo incl. navbar, 1 = return html, 2 = echo without navbar (eg. for popups)
|
||||
* @param int $output_mode
|
||||
* 0 = echo incl. navbar
|
||||
* 1 = return html
|
||||
* -1 = first time return html, after use 0 (echo html incl. navbar), eg. for home
|
||||
* 2 = echo without navbar (eg. for popups)
|
||||
* 3 = return eGW independent html site
|
||||
* @param string $ignore_validation if not empty regular expression for validation-errors to ignore
|
||||
* @param array $changes change made in the last call if looping, only used internaly by process_exec
|
||||
* @return string html for $output_mode == 1, else nothing
|
||||
@ -243,6 +247,14 @@ class etemplate extends boetemplate
|
||||
self::$request->ignore_validation = $ignore_validation;
|
||||
self::$request->name_vars = self::$name_vars;
|
||||
|
||||
if((int) $output_mode == 3)
|
||||
{
|
||||
self::$styles_included[$this->name] = True;
|
||||
return "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>\n"
|
||||
."<html>\n<head>\n".html::style($this->style)."\n</head>\n"
|
||||
."<body>\n".$this->show($content)."\n</body>\n</html>";
|
||||
}
|
||||
|
||||
$html = $this->include_java_script(1).
|
||||
$this->show($this->complete_array_merge($content,$changes),$sel_options,$readonlys,self::$name_vars);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user