HTML Tag

This component allows you to define a new special <s:TAG_NAME> HTML tag which you can create using the create html-tag CLI command, such as:

apex create html-tag <PACKAGE> <ALIAS>

apex create html-tag my-shop order-overview

Using the above example, a new file is created at /src/MyShop/Opus/Tags/t_order_ovewview.php, which contains one render() method. With this example, you would be able to begin putting the HTML tag <s:order_overview> within views and have them rendered

For full information on how to develop custom tags, please consult Creating New <s:...> Functional Tags section of the documentation.