thelia/tabs-module

Installs: 493

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 5

Open Issues: 1

Type:thelia-module

4.0.0 2024-04-17 13:07 UTC

This package is auto-updated.

Last update: 2024-09-17 13:59:49 UTC


README

This module allows you to create content tabs for contents, products, categories & folders

How to install

This module must be into your modules/ directory (thelia/local/modules/).

You can download the .zip file of this module or create a git submodule into your project like this :

cd /path-to-thelia
git submodule add https://github.com/thelia-modules/Tabs.git local/modules/Tabs

Next, go to your Thelia admin panel for module activation.

The loop tags

Parameters

How to use

You can manage your tabs into the "Modules" tab of content and product editing view.

This module allow you to use a new loop : tabs.

Here is an example of using :

Use the tabs loop (list of tabs related to a content id)

{loop name="tabs" type="tabs" source="content" source_id=$ID order="manual_reverse"}
    <article>
        <h1>{$TITLE}</h1>
        <div class="description">{$DESCRIPTION nofilter}</div>
    </article>
{/loop}

Use the tabs loop (list of tabs related to a product id)

{loop name="tabs" type="tabs" source="product" source_id=$ID  order="manual_reverse"}
    <article>
        <h1>{$TITLE}</h1>
        <div class="description">{$DESCRIPTION nofilter}</div>
    </article>
{/loop}

Use the tabs loop (list of tabs related to a category id)

{loop name="tabs" type="tabs" source="category" source_id=$ID  order="manual_reverse"}
    <article>
        <h1>{$TITLE}</h1>
        <div class="description">{$DESCRIPTION nofilter}</div>
    </article>
{/loop}

Use the tabs loop (list of tabs related to a folder id)

{loop name="tabs" type="tabs" source="folder" source_id=$ID  order="manual_reverse"}
    <article>
        <h1>{$TITLE}</h1>
        <div class="description">{$DESCRIPTION nofilter}</div>
    </article>
{/loop}