This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package vsc_domain |
| 4 |
* @subpackage models |
| 5 |
* @author marius orcsik <marius@habarnam.ro> |
| 6 |
* @date 09.11.19 |
| 7 |
*/ |
| 8 |
|
| 9 |
import ('domain/models'); |
| 10 |
class vscEmptyModel extends vscModelA { |
| 11 |
protected $sPageTitle = null; |
| 12 |
protected $sPageContent = null; |
| 13 |
|
| 14 |
public function setPageTitle ($sTitle) { |
| 15 |
$this->sPageTitle = $sTitle; |
| 16 |
} |
| 17 |
|
| 18 |
public function getPageTitle () { |
| 19 |
return $this->sPageTitle; |
| 20 |
} |
| 21 |
|
| 22 |
public function setPageContent ($sContent) { |
| 23 |
$this->sPageContent = $sContent; |
| 24 |
} |
| 25 |
|
| 26 |
public function getPageContent () { |
| 27 |
return $this->sPageContent; |
| 28 |
} |
| 29 |
} |