Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Normand Erwan
VVVVVV_level_merger
Commits
8b4f4f33
Commit
8b4f4f33
authored
Jun 01, 2015
by
Erwan Normand
Browse files
Created the Content class
parent
536c1564
Changes
2
Hide whitespace changes
Inline
Side-by-side
model/Content.class.php
0 → 100644
View file @
8b4f4f33
<?php
class
Content
{
private
$content
;
public
function
__construct
()
{
$this
->
content
=
null
;
}
public
function
setXML
(
$xml
)
{
}
public
function
setContent
(
$content
)
{
$this
->
content
=
$content
;
}
public
function
getContent
()
{
return
$this
->
content
;
}
public
function
getTab
(
$x
,
$y
)
{
}
}
\ No newline at end of file
test.php
0 → 100644
View file @
8b4f4f33
<?php
include
'Content.class.php'
;
echo
'coucou'
;
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment