Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
ncphp
/
mcClasses
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 3a67d3dd
authored
Dec 09, 2013
by
sn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
html meta data im D LOGGER
1 parent
16ea28ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
D/class_D.inc.php
D/class_D.inc.php
View file @
3a67d3d
...
@@ -91,7 +91,20 @@ class D {
...
@@ -91,7 +91,20 @@ class D {
public
static
function
printToHtmlFile
(
$param_filename
,
$param_kindof
=
'w'
)
{
public
static
function
printToHtmlFile
(
$param_filename
,
$param_kindof
=
'w'
)
{
$screen_content
=
D
::
printToScreen
(
true
);
$screen_content
=
D
::
printToScreen
(
true
);
mcFile
::
write
(
$param_filename
,
$screen_content
,
$param_kindof
);
$html_beginn
=
'
<html>
<header>
<title>D LOGGER</title>
</header>
<body>
'
;
$html_end
=
'
</body>
</html>
'
;
mcFile
::
write
(
$param_filename
,
$html_beginn
.
$screen_content
.
$html_end
,
$param_kindof
);
}
}
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment