mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
1.2.16
This commit is contained in:
@ -768,6 +768,11 @@ class SimpleXLSXGen {
|
||||
$this->defaultFontSize = $size;
|
||||
return $this;
|
||||
}
|
||||
public function modTemplate( $path, $custom_xml ) {
|
||||
$t = $this->template[ $path ];
|
||||
$p = strrpos($t,'</');
|
||||
return $this->template[ $path ] = substr($t, 0, $p) . $custom_xml . substr($t,$p);
|
||||
}
|
||||
public function mergeCells( $range ) {
|
||||
$this->sheets[$this->curSheet]['mergecells'][] = $range;
|
||||
return $this;
|
||||
|
Reference in New Issue
Block a user