mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
allow to call etemplate_widget::setElementAttribute() static eg. from within a get_rows method
This commit is contained in:
parent
b8801d64e5
commit
2e287689ef
@ -853,15 +853,18 @@ class etemplate_widget
|
||||
/**
|
||||
* Set an attribute in a named cell if val is not NULL else return the attribute
|
||||
*
|
||||
* Can be called static, in which case it only sets modifications.
|
||||
*
|
||||
* @param string $name cell-name
|
||||
* @param string $attr attribute-name
|
||||
* @param mixed $val if not NULL sets attribute else returns it
|
||||
* @return reference to attribute
|
||||
*/
|
||||
public function &setElementAttribute($name,$attr,$val)
|
||||
public static function &setElementAttribute($name,$attr,$val)
|
||||
{
|
||||
error_log(__METHOD__."('$name', '$attr', ...) request=".get_class(self::$request).", response=".get_class(self::$response).function_backtrace());
|
||||
$ref =& self::$request->modifications[$name][$attr];
|
||||
if(self::$request && self::$response && $val != $this->attrs[$attr])
|
||||
if(self::$request && self::$response && (!isset($this) || $val != $this->attrs[$attr]))
|
||||
{
|
||||
// In an AJAX response - automatically add
|
||||
self::$response->generic('assign',array(
|
||||
@ -870,8 +873,9 @@ class etemplate_widget
|
||||
'key' => $attr,
|
||||
'value' => $val
|
||||
));
|
||||
error_log(__METHOD__."('$name', '$attr', ...) ".function_backtrace());
|
||||
}
|
||||
$this->attrs[$attr] = $val;
|
||||
if (isset($this)) $this->attrs[$attr] = $val;
|
||||
if (!is_null($val)) $ref = $val;
|
||||
|
||||
//error_log(__METHOD__."('$name', '$attr', ".array2string($val).')');
|
||||
|
@ -263,6 +263,8 @@ class etemplate_widget_nextmatch extends etemplate_widget
|
||||
array $knownUids=null, $lastModified=null)
|
||||
{
|
||||
self::$request = etemplate_request::read($exec_id);
|
||||
self::$response = egw_json_response::get();
|
||||
|
||||
$value = self::get_array(self::$request->content, $form_name, true);
|
||||
if(!is_array($value))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user