Download the PHP package ramiro/html-meta-group without Composer
On this page you can find all versions of the php package ramiro/html-meta-group. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ramiro/html-meta-group
More information about ramiro/html-meta-group
Files in ramiro/html-meta-group
Download ramiro/html-meta-group
More information about ramiro/html-meta-group
Files in ramiro/html-meta-group
Vendor ramiro
Package html-meta-group
Short Description wrapper html para contener una pagina web.
License MIT
Package html-meta-group
Short Description wrapper html para contener una pagina web.
License MIT
Please rate this library. Is it a good library?
Informations about the package html-meta-group
htmlMetaGroup
Meta Tags Group
$metaGroup = new MetaGroup([ 'author' => "John Doe", 'description' => "Free Web tutorials", 'keywords' => "HTML, CSS, JavaScript" ]); $metaGroup->Group();
Como se observa en las lineas de arriba inicializamos un objeto con el contructor y le pasamos las claves y valores que se indican en el arreglo y finalmente llamamos a la funcion Group() para incrustar las meta tags dentro del head.
Como insertar el grupo de meta tags dentro del head del wrapper ?
page ([ 'idioma' => 'en', 'head' => [ $metaGroup->Group() ], 'body' => [ 'contenido' => [], 'atributos' => [] ] ]);
Como puede observar , solamente agregamos la funcion dentro del array del contenido del head en la funcion page() y de ese modo agregamos el grupo de meta tags dentro del wrapper page().
con el helper
group()no es necesario instanciar la clase solo utilize la funcion group() directamente en el head
All versions of html-meta-group with dependencies
PHP Build Version
Package Version
Requires
ramiro/html-wrapper Version
1.0.0
The package ramiro/html-meta-group contains the following files
Loading the files please wait ....