Esempio n. 1
0
 /**
  * Creates the element with content and attributes given as parameters.
  */
 public static function a($attr_array, $content, $url)
 {
     $attr_array_final = Attr::lisaa_maarite(Attr::href($url), $attr_array);
     return Html::luo_elem_2os("a", $content, $attr_array);
 }