diff options
Diffstat (limited to 'app/class/art2.php')
-rw-r--r-- | app/class/art2.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/app/class/art2.php b/app/class/art2.php index 4561773..754ba14 100644 --- a/app/class/art2.php +++ b/app/class/art2.php @@ -21,8 +21,6 @@ class Art2 protected $footer; protected $externalcss; protected $customhead; - protected $renderhead; - protected $renderbody; protected $secure; protected $interface; protected $linkfrom; @@ -92,8 +90,6 @@ class Art2 $this->setfooter(''); $this->setexternalcss([]); $this->setcustomhead(''); - $this->setrenderhead(''); - $this->setrenderbody(''); $this->setsecure(Config::defaultprivacy()); $this->setinterface('main'); $this->setlinkfrom([]); @@ -308,20 +304,6 @@ class Art2 return $this->footer; } - public function renderhead($type = 'string') - { - if ($type == 'string') { - return $this->renderhead; - } - } - - public function renderbody($type = 'string') - { - if ($type == 'string') { - return $this->renderbody; - } - } - public function secure($type = 'int') { if ($type == 'string') { @@ -631,16 +613,6 @@ class Art2 } } - public function setrenderhead(string $render) - { - $this->renderhead = $render; - } - - public function setrenderbody(string $render) - { - $this->renderbody = $render; - } - public function setsecure($secure) { if ($secure >= 0 and $secure <= self::SECUREMAX) { |