Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
80e10158
Commit
80e10158
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Add code comment
parent
bb8e53de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/includes/odtphp/Segment.php
+4
-1
4 additions, 1 deletion
htdocs/includes/odtphp/Segment.php
htdocs/includes/odtphp/odf.php
+4
-1
4 additions, 1 deletion
htdocs/includes/odtphp/odf.php
with
8 additions
and
2 deletions
htdocs/includes/odtphp/Segment.php
+
4
−
1
View file @
80e10158
...
...
@@ -76,12 +76,15 @@ class Segment implements IteratorAggregate, Countable
/**
* Replace variables of the template in the XML code
* All the children are also called
* Complete the current segment with new line
*
* @return string
*/
public
function
merge
()
{
$this
->
xmlParsed
.
=
str_replace
(
array_keys
(
$this
->
vars
),
array_values
(
$this
->
vars
),
$this
->
xml
);
$this
->
xmlParsed
.
=
str_replace
(
array_keys
(
$this
->
vars
),
array_values
(
$this
->
vars
),
$this
->
xml
);
// We concat all file, later we will
// Note: To change style of table-row, we should make a replace here to add attribute
// table:style-name="Table4.A2"
if
(
$this
->
hasChildren
())
{
foreach
(
$this
->
children
as
$child
)
{
$this
->
xmlParsed
=
str_replace
(
$child
->
xml
,
(
$child
->
xmlParsed
==
""
)
?
$child
->
merge
()
:
$child
->
xmlParsed
,
$this
->
xmlParsed
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/includes/odtphp/odf.php
+
4
−
1
View file @
80e10158
...
...
@@ -107,6 +107,8 @@ class Odf
copy
(
$filename
,
$this
->
tmpfile
);
// Now file has been loaded, we must move the [!-- BEGIN and [!-- END tags outside the
// <table:table-row tag
$this
->
_moveRowSegments
();
}
...
...
@@ -381,7 +383,8 @@ IMG;
}
/**
* Declare a segment in order to use it in a loop
* Declare a segment in order to use it in a loop.
* Extract the segment and store it into $this->segments[]. Return it for next call.
*
* @param string $segment
* @throws OdfException
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment