ui-awesome / html-helper
UI Awesome HTML Helpers for PHP.
Fund package maintenance!
terabytesoftw
Installs: 14 189
Dependents: 12
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ui-awesome/html-helper
Requires
- php: ^8.1
- ext-mbstring: *
Requires (Dev)
- infection/infection: ^0.27|^0.31
- maglnet/composer-require-checker: ^4.1
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.1
- phpstan/phpstan-strict-rules: ^2.0.3
- phpunit/phpunit: ^10.5
- rector/rector: ^2.2
- symplify/easy-coding-standard: ^13.0
This package is auto-updated.
Last update: 2025-12-18 01:20:33 UTC
README
Html helper
A powerful PHP library to simplify HTML element creation
Generate attributes, encode content, sanitize HTML, and manage CSS classes with ease.
Features
Installation
composer require ui-awesome/html-helper:^0.3
Quick start
Rendering HTML attributes
Sorts attributes by priority, handles boolean values, and automatically encodes JSON for complex data.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\Attributes; ?> <?= Attributes::render( [ 'id' => 'submit-btn', // automatically joined 'class' => ['btn', 'btn-primary'], // `true` booleans are rendered as valueless attributes 'disabled' => true, // `false` booleans are skipped 'readonly' => false, // JSON encoded automatically 'data' => [ 'id' => 42, 'options' => ['modal' => true], ], 'style' => [ 'color' => '#fff', 'margin-top' => '10px' ], ] ) ?> // output: // class="btn btn-primary" id="submit-btn" disabled data-id="42" data-options='{"modal":true}' style='color: #fff; margin-top: 10px;'
Managing CSS classes
Allows you to merge, add, or override CSS classes within an attributes array smartly.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\CSSClass; $attributes = ['class' => 'base-class']; // add new classes (merges efficiently) CSSClass::add($attributes, ['text-center', 'mt-5']); // override existing classes CSSClass::add($attributes, 'alert alert-danger', true); echo $attributes['class']; // output: alert alert-danger
Encoding
Ensures your content and attribute values are safe from XSS.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\Encode; // safe Content echo Encode::content('<script>alert("xss")</script>'); // output: <script>alert("xss")</script> // safe Attribute Value echo Encode::value('Name "Quote"'); // output: Name "Quote"
Enum normalization
Normalizes values against a predefined set, supporting both arrays and Enums.
<?php declare(strict_types=1); namespace App; use App\Enums\Status; use UIAwesome\Html\Helper\Enum; // normalize array of Enums $result = Enum::normalizeArray([Status::ACTIVE, Status::INACTIVE]); // ['active', 'inactive'] // normalize mixed array $result = Enum::normalizeArray(['foo', Status::ACTIVE, 42]); // ['foo', 'active', 42] // normalize value from Enum Enum::normalizeValue(Status::ACTIVE); // 'active' // normalize value from mixed Enum::normalizeValue('foo'); // 'foo'
Form naming & IDs
Generates standard PHP form names and valid HTML IDs, handling arrayable and nested properties effortlessly.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\Naming; // generate input name (Nested) echo Naming::generateInputName('User', 'profile[0][email]'); // output: User[profile][0][email] // generate input ID (Sanitized) echo Naming::generateInputId('User', 'profile[0][email]'); // output: user-profile-0-email // convert regex to pattern echo Naming::convertToPattern('/^[a-z]+$/i'); // output: ^[a-z]+$
Template rendering
Performs clean token replacement with normalized line endings.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\Template; echo Template::render("Hello, {name}!", ['{name}' => 'Yii3']); // output: Hello, Yii3!
Validation
Enforces strict types and approved values for your HTML logic.
<?php declare(strict_types=1); namespace App; use UIAwesome\Html\Helper\Validator; // validate integer-like string $isValid = Validator::intLike('123', 0, 1000); // validate against allowed list (supports Enums) Validator::oneOf('sm', ['sm', 'md', 'lg'], 'size'); // passes
Documentation
For detailed configuration options and advanced usage.
- 🧪 Testing Guide