16 lines
325 B
PHP
16 lines
325 B
PHP
|
<?php
|
||
|
|
||
|
namespace Elements;
|
||
|
|
||
|
abstract class SimpleBody extends Body {
|
||
|
public function __construct($document) {
|
||
|
parent::__construct($document);
|
||
|
}
|
||
|
|
||
|
public function getCode() {
|
||
|
$content = $this->getContent();
|
||
|
return parent::getCode() . "<body>$content</body>";
|
||
|
}
|
||
|
|
||
|
protected abstract function getContent();
|
||
|
}
|