farmerstevieb / tina4php-catalog
Tina4 catalog Module
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Twig
Requires
Requires (Dev)
- overtrue/phplint: ^2.0
- phpmailer/phpmailer: ^6.5
- phpunit/phpunit: ^9
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-03-05 23:31:10 UTC
README
# Tina4 CMS Module Welcome to the Tina4CMS module, how does it work? ``` composer require tina4stack/tina4cms composer exec tina4 initialize:run ``` Add the database connection to your index.php file which would have been created ``` require_once "vendor/autoload.php"; global $DBA; $DBA = new \Tina4\DataSQLite3("test.db","", "", "d/m/Y"); echo new \Tina4\Tina4Php(); ``` Run the CMS ```commandline composer start 8080 ``` Open up the CMS to setup the admin user http://localhost:8080/cms/login -> will get you started ### The Landing Page - home You need to create a landing page called "home" as your starting page for things to working properly. ### Customization Make a *base.twig* file in your */src/templates* folder, it needs the following blocks ``` {{ title }} {% block headers %} {% endblock %} {% block body %} {% block navigation %} {% include "navigation.twig" %} {% endblock %} {% block content %} {% endblock %} {% block footer %} {% endblock %} {% endblock %} ``` or an example which extends the existing base in the tina4-cms ``` {% extends "@tina4cms/base.twig" %} {% block headers %} {% endblock %} {% block body %} {% block navigation %} {% include "navigation.twig" %} {% endblock %} {% block content %} {% endblock %} {% endblock %} ``` #### Example of a navigation.twig which you can over write Create a *navigation.twig* file in your *src/templates* folder ``` {% set menus = Content.getMenu("") %}-
{% for menu in menus %}
- {{ menu.name }}
{% if menu.children %}
-
{% for childmenu in menu.children %}
- {{ childmenu.name }} {% endfor %}
{% endfor %}