Ejemplo n.º 1
0
 /**
  * Whether the link is special or not
  *
  * @return boolean
  */
 public function isSpecialUrl()
 {
     foreach ($this->hidden as $hidden) {
         if (StringsMethods::startsWith($this->href, $hidden)) {
             return true;
         }
     }
     return false;
 }