PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/youronlinestore.kerihosting.com/system/library/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/youronlinestore.kerihosting.com/system/library/document.php |
<?php class Document { private $title; private $description; private $keywords; private $links = array(); private $styles = array(); private $scripts = array(); public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } public function setDescription($description) { $this->description = $description; } public function getDescription() { return $this->description; } public function setKeywords($keywords) { $this->keywords = $keywords; } public function getKeywords() { return $this->keywords; } public function addLink($href, $rel) { $this->links[md5($href)] = array( 'href' => $href, 'rel' => $rel ); } public function getLinks() { return $this->links; } public function addStyle($href, $rel = 'stylesheet', $media = 'screen') { $this->styles[md5($href)] = array( 'href' => $href, 'rel' => $rel, 'media' => $media ); } public function getStyles() { return $this->styles; } public function addScript($script) { $this->scripts[md5($script)] = $script; } public function getScripts() { return $this->scripts; } } ?>