A collection of handy web utilities
Drop a .php file in the root, or a sub-folder containing an index.php. It appears automatically, marked not in registry. To customise the card, add an entry to tools.json:
{
"id": "my-tool",
"title": "My Tool",
"description": "What it does, in one or two sentences.",
"path": "my-tool.php", // or "my-tool/" for a sub-folder
"icon": "tool", // map-pin | image | file | code | database | calculator | globe | camera | settings | folder
"tags": ["Tag1", "Tag2"],
"status": "active" // active | coming-soon
}
To show the shared nav bar inside a tool, add one line at the very top of the file (before any output):
<?php include '_nav.php'; // root-level tool (kml-converter.php etc.) include '../_nav.php'; // tool in a sub-folder