Initial commit - prestashop-icons package

Semantic icon helper for PrestaShop modules.
- Maps icon names to Font Awesome or Material Icons
- Auto-detects admin context (Material) vs front (FA default)
- Reads icon preference from ps_mpr_config table
- Theme detection for Material Icons
- PHP class + JavaScript helper

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-26 14:49:04 +01:00
commit 19db248bb4
4 changed files with 654 additions and 0 deletions

14
composer.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "myprestarocks/prestashop-icons",
"description": "Semantic icon helper for PrestaShop modules - maps icon names to Font Awesome or Material Icons",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"MyPrestaRocks\\Icons\\": "src/"
}
},
"require": {
"php": ">=7.1"
}
}