Ejemplo n.º 1
0
 /**
  * {@inheritDoc}
  * @param string $integrityCheck Informação para checagem de integridade do script remoto.
  * @param string $crossorigin Identificação do tipo de requisição crossorigin do script remoto.
  */
 public function __construct(string $url, string $fallback = '', string $integrityCheck = '', string $crossorigin = 'anonymous')
 {
     parent::__construct('', false, false);
     $this->url = $url;
     $this->fallback = $fallback;
     $this->integrityCheck = $integrityCheck;
     $this->crossorigin = $crossorigin;
 }
Ejemplo n.º 2
0
 public function __construct($if, $src)
 {
     parent::__construct($src);
     $this->_if = $if;
 }