Beispiel #1
0
 public function testRel()
 {
     $this->link->setRel('stylesheet');
     $this->assertEquals('stylesheet', $this->link->getRel());
 }
Beispiel #2
0
 private function addCommonLinkTags()
 {
     //Url Canonica
     if ($this->canonical) {
         $link = new Link();
         $link->setRel('canonical')->setHref($this->canonical);
         $this->links->insert($link, self::PRIORITY_HIGH);
     }
 }