+ if ($atributos != '') {
+ $tmp = $this->_parseAttributes($atributos);
+ if (isset($tmp['width'])) {
+ $this->_atribTabla['width'] = $tmp['width'];
+ }
+ if (isset($tmp['bgcolor'])) {
+ $this->_atribTabla['bgcolor'] = $tmp['bgcolor'];
+ }
+ if (isset($tmp['cellspacing'])) {
+ $this->_atribTabla['cellspacing'] = $tmp['cellspacing'];
+ }
+ if (isset($tmp['cellpadding'])) {
+ $this->_atribTabla['cellpadding'] = $tmp['cellpadding'];
+ }
+ }
+ $this->HTML_Table($this->_atribTabla);