{"id":25363463,"url":"https://github.com/vitexsoftware/php-vitexsoftware-ease-html-widgets","last_synced_at":"2025-09-22T21:51:29.607Z","repository":{"id":220205134,"uuid":"751041074","full_name":"VitexSoftware/php-vitexsoftware-ease-html-widgets","owner":"VitexSoftware","description":"Additional \u0026 Eye Candy Web classes for Ease Framework","archived":false,"fork":false,"pushed_at":"2025-08-26T18:53:14.000Z","size":503,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-27T02:17:04.631Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VitexSoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-31T20:19:08.000Z","updated_at":"2025-08-26T18:53:18.000Z","dependencies_parsed_at":"2024-11-15T19:28:15.211Z","dependency_job_id":"83c06cc7-6f6b-40f9-bb9f-2eb5d25c72b8","html_url":"https://github.com/VitexSoftware/php-vitexsoftware-ease-html-widgets","commit_stats":null,"previous_names":["vitexsoftware/php-vitexsoftware-ease-html-widgets"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/VitexSoftware/php-vitexsoftware-ease-html-widgets","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VitexSoftware%2Fphp-vitexsoftware-ease-html-widgets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VitexSoftware%2Fphp-vitexsoftware-ease-html-widgets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VitexSoftware%2Fphp-vitexsoftware-ease-html-widgets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VitexSoftware%2Fphp-vitexsoftware-ease-html-widgets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VitexSoftware","download_url":"https://codeload.github.com/VitexSoftware/php-vitexsoftware-ease-html-widgets/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VitexSoftware%2Fphp-vitexsoftware-ease-html-widgets/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276481060,"owners_count":25649986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-22T02:00:08.972Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-14T22:32:44.576Z","updated_at":"2025-09-22T21:51:29.543Z","avatar_url":"https://github.com/VitexSoftware.png","language":"PHP","readme":"# VitexSoftware Ease HTML Widgets\n\nWelcome to the VitexSoftware Ease HTML Widgets project! This repository contains a collection of reusable HTML widgets for PHP applications.\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Introduction\n\nVitexSoftware Ease HTML Widgets is a library designed to simplify the creation and management of HTML widgets in PHP applications. It provides a set of pre-built widgets that can be easily integrated into your projects.\n\n## Installation\n\nTo install the library, you can use Composer:\n\n```bash\ncomposer require vitexsoftware/ease-html-widgets\n```\n\n## Usage\n\nHere is a basic example of how to use one of the widgets:\n\n### SandClock\n\n```php\nrequire '../vendor/autoload.php';\n\nuse \\VitexSoftware\\Ease\\Html\\Widgets\\SandClock();\n\n$widget = new SandClock();\necho $widget;\n```\n\nIt gives you nice SandClock\n\n![SandClock Widget](sandclock.svg?raw=true)\n\n### OldTerminal\n\n![Old Terminal](oldterminal.png?raw=true)\n\n### Locale Select\n\nSimple chooser of availble locales\n\n```php\nnew \\Ease\\ui\\LangSelect()\n```\n\n![LocaleSelect](LocaleSelect.png?raw=true \"Locale select Widget\")\n\n### Live Age\n\nShow live age based on unix timestamp\n\n```php\nnew \\Ease\\ui\\LiveAge(new DateTime);\n```\n\n![LiveAge](LiveAge.png?raw=true \"Live Age Widget\")\n\n### Browsing History\n\n```php\nnew BrowsingHistory();\n```\n\n![Browsing History](BrowsingHistory.png?raw=true \"Browsing History\")\n\n### Sticky note\n\n```php\nnew StickyNote();\n```\n\n![Sticky Note](StickyNote.png?raw=true \"Sticky Note\")\n\n### Selectizer trait\n\nApply Selectize.js to InputBox or Select\n\n```php\nclass Selector extends \\Ease\\Html\\SelectTag\n{\n    use \\Ease\\Html\\Widgets\\Selectizer;\n}\n\n$properties = [\n    'valueField' =\u003e 'value',\n    'labelField' =\u003e 'key',\n    'searchField' =\u003e ['key', 'value']\n];\n\n$options = [\n    ['key' =\u003e 'red', 'value' =\u003e 'Red'],\n    ['key' =\u003e 'blue', 'value' =\u003e 'Blue'],\n    ['key' =\u003e 'green', 'value' =\u003e 'Green'],\n    ['key' =\u003e 'yellow', 'value' =\u003e 'Yellow'],\n];\n\n$s = new Selector('selector');\n$s-\u003eselectize($properties, $options);\n```\n\n![Selectizer](https://raw.githubusercontent.com/VitexSoftware/Ease-PHP-Bricks/master/Selectizer.png \"Selectizer\")\n\n## Contributing\n\nWe welcome contributions! Please read our [contributing guidelines](CONTRIBUTING.md) to get started.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n### Debian Packages\n\nTo install using Debian packages from `repo.vitexsoftware.com`, follow these steps:\n\n1. Add the repository to your sources list:\n\n```bash\nwget -qO- https://repo.vitexsoftware.com/keyring.gpg | sudo tee /etc/apt/trusted.gpg.d/vitexsoftware.gpg\necho \"deb [signed-by=/etc/apt/trusted.gpg.d/vitexsoftware.gpg]  https://repo.vitexsoftware.com  $(lsb_release -sc) main\" | sudo tee /etc/apt/sources.list.d/vitexsoftware.list\nsudo apt update\n```\n\n2. Update the package list:\n\n```bash\nsudo apt-get update\n```\n\n3. Install the package:\n\n```bash\nsudo apt-get install php-vitexsoftware-ease-html-widgets\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitexsoftware%2Fphp-vitexsoftware-ease-html-widgets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvitexsoftware%2Fphp-vitexsoftware-ease-html-widgets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitexsoftware%2Fphp-vitexsoftware-ease-html-widgets/lists"}