Exemplo n.º 1
0
Arquivo: img.php Projeto: Borvik/Munla
 /**
  * Creates a new image element.
  * 
  * @param array $attributes The attributes that should be assigned to the element.
  */
 public function __construct(array $attributes)
 {
     parent::__construct($attributes);
 }
Exemplo n.º 2
0
Arquivo: a.php Projeto: Borvik/Munla
 /**
  * Creates a new anchor element.
  * 
  * @param array $attributes The attributes that should be assigned to the element.
  */
 public function __construct($content, array $attributes)
 {
     parent::__construct($attributes);
     $this->content = $content;
 }