2017 © Pedro Peláez
 

library html

HTML component for Palmtree PHP

image

palmtree/html

HTML component for Palmtree PHP

  • Sunday, November 12, 2017
  • by palmtree
  • Repository
  • 1 Watchers
  • 0 Stars
  • 100 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 5 % Grown

The README.md

:palm_tree: Palmtree Html

License Build, (*1)

Build and render HTML elements using an OOP style interface and jQuery style selectors., (*2)

Requirements

  • PHP >= 7.1

Installation

Use composer to add the package to your dependencies:, (*3)

composer require palmtree/html

Usage Example

 'Home',
    'href'  => 'https://example.org',
];

$menuItems[] = [
    'label' => 'About',
    'href'  => 'https://example.org/about',
];

$menuItems[] = [
    'label' => 'Contact',
    'href'  => 'https://example.org/contact',
];

foreach ($menuItems as $item) {
    $a = Element::create('a[href="' . $item['href'] . '"]')->setInnerText($item['label']);

    $li = Element::create('li.item')->addChild($a);
    $li->classes[] = 'item-' . strtolower($item['label']);

    $menu->addChild($li);
}


$menu->attributes->setData('item_total', (string)count($menuItems));
$menu->attributes['aria-label'] = 'Navigation'

echo $menu->render();

?>

Renders the following HTML:, (*4)

<ul class="some-class" data-item_total="3" aria-label="Navigation">
    <li class="item item-home">
        <a href="https://example.org">Home</a>
    </li>
    <li class="item item-about">
        <a href="https://example.org/about">About</a>
    </li>
    <li class="item item-contact">
        <a href="https://example.org/contact">Contact</a>
    </li>
</ul>

License

Released under the MIT license, (*5)

The Versions

12/11 2017

dev-master

9999999-dev

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

by andyexeter

12/11 2017

v1.1.0

1.1.0.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

11/06 2017

v1.0.4

1.0.4.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

11/06 2017

v1.0.3

1.0.3.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

11/06 2017

v1.0.2

1.0.2.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

12/04 2017

v1.0.1

1.0.1.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

25/10 2016

1.0.0

1.0.0.0

HTML component for Palmtree PHP

  Sources   Download

MIT

The Requires

 

by andyexeter